/* =================================
   EDULAND — Main Stylesheet
   ================================= */

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

/* CSS Variables */
:root {
  --primary:        #002B55;
  --primary-hover:  #003d7a;
  --footer-bg:      #001f3f;
  --bg-soft:        #EBF3FA;
  --bg-lighter:     #F4F8FC;
  --white:          #FFFFFF;
  --text:           #1a1a2e;
  --text-secondary: #5a6275;
  --border:         #dfe5ed;
  --highlight-line: #B8D9F0;

  --font-heading: 'Raleway', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;

  --radius-card: 16px;
  --radius-btn:  10px;
  --nav-height:  100px;
  --container:   1180px;
  --section-v:   90px;
  --transition:  0.25s ease;
}

/* Base */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.25;
}
h1 { font-size: 48px; font-weight: 800; }
h2 { font-size: 38px; font-weight: 700; }
h3 { font-size: 22px; font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }
p  { color: var(--text-secondary); }

/* Container */
.el-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* Section */
.el-section         { padding: var(--section-v) 0; }
.el-section--soft   { background: var(--bg-soft); }
.el-section--light  { background: var(--bg-lighter); }
.el-section--dark   { background: var(--primary); }

/* Section Header */
.el-section__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.55;
  margin-bottom: 12px;
}

.el-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.el-section__header h2 { margin-bottom: 16px; }
.el-section__header p  { font-size: 17px; max-width: 560px; margin: 0 auto; }

/* =================================
   NAVIGATION
   ================================= */

.el-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.el-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.el-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.el-nav__logo img {
  height: 90px;
  width: auto;
  display: block;
}

.el-footer__logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

/* Social SVG icons */
.el-social-svg {
  flex-shrink: 0;
  display: block;
}

.el-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.el-nav__links li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.el-nav__links li a:hover,
.el-nav__links li a.active { color: var(--primary); }

.el-nav__links li.el-nav__cta a {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-btn);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}

.el-nav__links li.el-nav__cta a:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
}

.el-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.el-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav */
.el-nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,43,85,0.08);
}

.el-nav__mobile.open { display: flex; }

.el-nav__mobile a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.el-nav__mobile a:last-child { border-bottom: none; }
.el-nav__mobile a:hover { color: var(--primary); }

.el-nav__mobile .el-nav__mobile-cta {
  margin-top: 12px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius-btn);
  padding: 14px 24px !important;
  text-align: center;
  border: none;
}

/* =================================
   BUTTONS
   ================================= */

.el-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 15px 32px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.el-btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.el-btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,43,85,0.28);
}

.el-btn--secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.el-btn--secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.el-btn--light {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.el-btn--light:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* =================================
   HERO — HOMEPAGE
   ================================= */

.el-hero {
  padding-top: calc(var(--nav-height) + 90px);
  padding-bottom: 90px;
  background: linear-gradient(155deg, var(--bg-lighter) 0%, var(--bg-soft) 55%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.el-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,217,240,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.el-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235,243,250,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.el-hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}

.el-hero__content {
  max-width: 620px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.75s ease both;
}

.el-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.el-hero__svg {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 8px 32px rgba(0,43,85,0.07));
}

@media (max-width: 1000px) {
  .el-hero__grid { grid-template-columns: 1fr 360px; gap: 24px; }
}

@media (max-width: 800px) {
  .el-hero__grid { grid-template-columns: 1fr; }
  .el-hero__visual { display: none; }
}

.el-hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,43,85,0.07);
  border: 1px solid rgba(0,43,85,0.14);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 28px;
}

.el-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* Underline decoration */
.el-hero__underline {
  position: relative;
  display: inline;
}

.el-hero__underline::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--highlight-line);
  border-radius: 3px;
}

.el-hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 36px;
}

.el-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.el-hero__social {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}

.el-hero__social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.el-hero__social-link:hover { color: var(--primary); }

.el-hero__social-icon {
  font-size: 18px;
}

.el-hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.el-stat__value {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.el-stat__label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* =================================
   CARDS
   ================================= */

.el-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.el-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,43,85,0.11);
  border-color: rgba(0,43,85,0.12);
}

.el-card__icon {
  width: 56px;
  height: 56px;
  background: var(--bg-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.el-card h3   { margin-bottom: 12px; }
.el-card p    { font-size: 15px; }
.el-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--transition);
}

.el-card__link:hover { gap: 10px; }

/* Grid layouts */
.el-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.el-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* =================================
   ABOUT SECTION
   ================================= */

.el-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.el-about__desc { font-size: 17px; margin-bottom: 32px; }

.el-about__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.el-fact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.el-fact-card__value {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.el-fact-card__label { font-size: 13px; color: var(--text-secondary); }

.el-approach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.el-approach-card h3 { margin-bottom: 24px; font-size: 20px; }

.el-value-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.el-value-item:last-child { border-bottom: none; }

.el-value-item__icon {
  width: 42px;
  height: 42px;
  background: var(--bg-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.el-value-item h4 { margin-bottom: 3px; font-size: 16px; }
.el-value-item p  { font-size: 14px; margin: 0; }

/* =================================
   HOW IT WORKS
   ================================= */

.el-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
}

.el-step {
  position: relative;
  text-align: center;
  padding: 0 16px;
}

/* Horizontal connector line */
.el-step::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.el-step:last-child::after { display: none; }

.el-step__number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.el-step h3 { font-size: 17px; margin-bottom: 10px; }
.el-step p  { font-size: 14px; }

/* =================================
   BLOG CARDS
   ================================= */

.el-blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.el-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,43,85,0.10);
}

.el-blog-card__thumb {
  height: 152px;
  background: var(--bg-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.el-blog-card__body { padding: 24px; }

.el-blog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-soft);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.el-blog-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.4; }
.el-blog-card p  { font-size: 14px; margin-bottom: 16px; }

.el-blog-card__date { font-size: 12px; color: var(--text-secondary); }

.el-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--transition);
}

.el-blog-card__link:hover { gap: 10px; }

/* =================================
   TESTIMONIALS
   ================================= */

.el-testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.el-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,43,85,0.10);
}

.el-testimonial__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-soft);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.el-testimonial__text {
  font-style: italic;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.8;
}

.el-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.el-testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.el-testimonial__name { font-weight: 700; font-size: 15px; color: var(--text); display: block; }
.el-testimonial__role { font-size: 13px; color: var(--text-secondary); }

/* =================================
   CTA SECTION
   ================================= */

.el-cta {
  padding: var(--section-v) 0;
  background: var(--primary);
  text-align: center;
}

.el-cta h2 { color: var(--white); margin-bottom: 16px; }
.el-cta p  {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.el-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.el-cta__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.el-cta__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.el-cta__social-link:hover { color: var(--white); }

/* =================================
   FOOTER
   ================================= */

.el-footer {
  background: var(--footer-bg);
  padding: 60px 0 32px;
}

.el-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.el-footer__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}

.el-footer__tagline { font-size: 14px; color: rgba(255,255,255,0.45); margin: 0; }

.el-footer__col h4 {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.el-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.el-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.el-footer__links a:hover { color: var(--white); }

.el-footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.el-footer__copy { font-size: 13px; color: rgba(255,255,255,0.35); margin: 0; }

/* =================================
   MISSION SECTION
   ================================= */

.el-mission {
  background: linear-gradient(145deg, #001f3f 0%, var(--primary) 45%, #002a5a 100%);
  color: white;
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}

.el-mission::before {
  content: '\201C';
  position: absolute;
  top: -80px;
  left: 20px;
  font-size: 360px;
  color: rgba(255,255,255,0.03);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.el-mission::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,171,238,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.el-mission__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.el-mission__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184,217,240,0.6);
  margin-bottom: 22px;
}

.el-mission__headline {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 800;
  color: white;
  line-height: 1.45;
  margin: 0 0 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.el-mission__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
}

.el-mission__closing {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: rgba(184,217,240,0.95);
  font-style: italic;
  border-left: 3px solid rgba(184,217,240,0.4);
  padding: 4px 0 4px 20px;
  line-height: 1.6;
}

/* =================================
   PAGE HERO (inner pages)
   ================================= */

.el-page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: linear-gradient(155deg, var(--bg-lighter) 0%, var(--bg-soft) 55%, var(--white) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.el-page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,217,240,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.el-page-hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,43,85,0.07);
  border: 1px solid rgba(0,43,85,0.13);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 20px;
}

.el-page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.el-page-hero p {
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto;
}

/* =================================
   PROCESS / NUMBERED LIST
   ================================= */

.el-process { display: flex; flex-direction: column; }

.el-process__item {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.el-process__item:last-child { border-bottom: none; }

.el-process__num {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.el-process__item h3 { font-size: 18px; margin-bottom: 8px; }
.el-process__item p  { font-size: 15px; }

/* =================================
   PACKAGES
   ================================= */

.el-package {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.el-package:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,43,85,0.12);
}

.el-package--featured {
  background: var(--primary);
  border-color: var(--primary);
}

.el-package--featured h3,
.el-package--featured p,
.el-package--featured li,
.el-package--featured .el-package__price { color: var(--white); }

.el-package--featured p { color: rgba(255,255,255,0.72); }
.el-package--featured .el-package__badge { background: rgba(255,255,255,0.2); color: var(--white); }

.el-package__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-soft);
  color: var(--primary);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.el-package h3 { font-size: 22px; margin-bottom: 8px; }
.el-package > p { font-size: 14px; margin-bottom: 24px; }

.el-package__price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1;
}

.el-package__price span { font-size: 15px; font-weight: 400; opacity: 0.6; }

.el-package__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.el-package__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.el-package__features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1.5;
}

.el-package--featured .el-package__features li { color: rgba(255,255,255,0.88); }
.el-package--featured .el-package__features li::before { color: rgba(255,255,255,0.8); }

/* =================================
   FAQ ACCORDION
   ================================= */

.el-faq {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
}

.el-faq__item { border-bottom: 1px solid var(--border); }

.el-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.el-faq__question:hover { color: var(--primary); }

.el-faq__icon {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.35s ease;
  line-height: 1;
}

.el-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.el-faq__answer p { padding-bottom: 20px; font-size: 15px; }

.el-faq__item.open .el-faq__answer { max-height: 400px; }
.el-faq__item.open .el-faq__icon   { transform: rotate(45deg); }

/* =================================
   CONTACT FORM
   ================================= */

.el-contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.el-form { display: flex; flex-direction: column; gap: 20px; }

.el-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.el-form__group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.el-form__group input,
.el-form__group select,
.el-form__group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.el-form__group input:focus,
.el-form__group select:focus,
.el-form__group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,43,85,0.08);
}

.el-form__group textarea { min-height: 120px; resize: vertical; }

/* Contact info card */
.el-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.el-contact-card {
  background: var(--bg-lighter);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.el-contact-card__icon {
  font-size: 26px;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.el-contact-card h4 { margin-bottom: 4px; font-size: 16px; }
.el-contact-card p  { font-size: 14px; }

/* Blog filter */
.el-blog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}

.el-filter-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.el-filter-btn:hover,
.el-filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Tag */
.el-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-soft);
  border-radius: 50px;
  padding: 4px 12px;
}

/* Two column layout helper */
.el-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Audience grid */
.el-audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.el-audience-card__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.el-audience-card h4 { margin-bottom: 6px; }
.el-audience-card p  { font-size: 14px; }

/* =================================
   ANIMATIONS
   ================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.el-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.el-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.el-reveal-delay-1 { transition-delay: 0.1s; }
.el-reveal-delay-2 { transition-delay: 0.2s; }
.el-reveal-delay-3 { transition-delay: 0.3s; }

/* =================================
   HERO 2-COLUMN LAYOUT
   ================================= */

.el-hero__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.el-hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =================================
   MARQUEE / TICKER
   ================================= */

.el-marquee {
  overflow: hidden;
  background: linear-gradient(90deg, #001a38 0%, var(--primary) 40%, #003d7a 100%);
  padding: 0;
  position: relative;
  user-select: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.el-marquee__inner {
  display: flex;
  align-items: stretch;
}

.el-marquee__label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  z-index: 3;
}

.el-marquee__overflow {
  overflow: hidden;
  position: relative;
  flex: 1;
}

.el-marquee__overflow::before,
.el-marquee__overflow::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.el-marquee__overflow::before { left: 0;  background: linear-gradient(to right, var(--primary), transparent); }
.el-marquee__overflow::after  { right: 0; background: linear-gradient(to left, #003d7a, transparent); }

.el-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding: 16px 0;
}

.el-marquee:hover .el-marquee__track { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.el-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  position: relative;
}

.el-marquee__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.22);
}

.el-marquee__item:hover {
  color: #fff;
}

/* =================================
   ADDITIONAL SERVICES CARDS
   ================================= */

.el-addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.el-addon-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.el-addon-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--highlight-line));
}

.el-addon-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,43,85,0.12);
  border-color: rgba(0,43,85,0.15);
}

.el-addon-row__icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  background: var(--bg-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.el-addon-row__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.el-addon-row__desc {
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
  line-height: 1.6;
}

.el-addon-row__price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.el-addon-row__price-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  .el-addons { grid-template-columns: 1fr; }
}

/* =================================
   FOUNDER BLOCK
   ================================= */

.el-founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(0,43,85,0.07);
}

.el-founder-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.el-founder-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg-soft);
  box-shadow: 0 4px 16px rgba(0,43,85,0.14);
  flex-shrink: 0;
}

.el-founder-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.el-founder-card__identity {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.el-founder-card__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.el-founder-card__role {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

.el-founder-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.el-founder-card__bio {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.el-founder-card__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.el-founder-card__fact {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  position: relative;
  overflow: hidden;
}

.el-founder-card__fact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--highlight-line));
}

.el-founder-card__fact-icon {
  font-size: 26px;
  line-height: 1;
}

.el-founder-card__fact-value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.el-founder-card__fact-label {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.el-founder__quote {
  border-left: 3px solid var(--primary);
  padding: 18px 22px;
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

.el-founder__quote cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .el-founder-card {
    padding: 28px 20px;
  }
  .el-founder-card__facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .el-founder-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .el-founder-card__facts {
    grid-template-columns: 1fr;
  }
}

/* =================================
   RESPONSIVE — 900px (tablet)
   ================================= */

@media (max-width: 900px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }

  .el-nav__links     { display: none; }
  .el-nav__hamburger { display: flex; }
  .el-nav__logo img  { height: 60px; }

  .el-grid-3         { grid-template-columns: 1fr 1fr; }
  .el-grid-2         { grid-template-columns: 1fr; }
  .el-two-col        { grid-template-columns: 1fr; }

  .el-about__grid    { grid-template-columns: 1fr; gap: 40px; }

  .el-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .el-step::after { display: none; }

  .el-footer__grid   { grid-template-columns: 1fr 1fr; }

  .el-hero__stats    { gap: 32px; }

  .el-contact__grid  { grid-template-columns: 1fr; }
  .el-hero__grid     { grid-template-columns: 1fr; }
  .el-hero__visual   { display: none; }

  .el-blog__filters  { flex-wrap: wrap; gap: 8px; }
  .el-filter-btn     { font-size: 13px; padding: 7px 14px; }
}

/* =================================
   RESPONSIVE — 600px (mobile)
   ================================= */

@media (max-width: 600px) {
  :root {
    --nav-height:  68px;
    --section-v:   52px;
    --container:   100%;
  }

  /* NAV */
  .el-nav__logo img { height: 48px; }

  /* TYPOGRAPHY */
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }

  /* CONTAINER */
  .el-container { padding: 0 18px; }

  /* HERO */
  .el-hero {
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 52px;
  }
  .el-hero__subtitle   { font-size: 16px; margin-bottom: 28px; }
  .el-hero__social     { margin-bottom: 36px; gap: 16px; flex-wrap: wrap; }
  .el-hero__actions    { flex-direction: column; align-items: stretch; }
  .el-hero__actions .el-btn { text-align: center; justify-content: center; }
  .el-hero__stats      { gap: 20px; padding-top: 28px; }
  .el-stat__value      { font-size: 24px; }
  .el-stat__label      { font-size: 13px; }

  /* PAGE HERO (inner pages) */
  .el-page-hero {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 44px;
  }
  .el-page-hero h1 { font-size: 24px; }
  .el-page-hero p  { font-size: 15px; }

  /* GRIDS */
  .el-grid-3,
  .el-grid-2,
  .el-two-col { grid-template-columns: 1fr; }
  .el-steps   { grid-template-columns: 1fr; }

  /* CARDS */
  .el-card          { padding: 22px; }
  .el-package       { padding: 24px; }
  .el-approach-card { padding: 22px; }

  /* ABOUT */
  .el-about__facts  { grid-template-columns: 1fr 1fr; }
  .el-about__desc   { font-size: 15px; }

  /* FACT CARDS */
  .el-fact-card        { padding: 14px; }
  .el-fact-card__value { font-size: 22px; }

  /* BLOG FILTERS */
  .el-blog__filters { flex-wrap: wrap; gap: 8px; }
  .el-filter-btn    { font-size: 12px; padding: 7px 12px; }

  /* BLOG CARDS */
  .el-blog-card__thumb { height: 120px; font-size: 36px; }

  /* MISSION */
  .el-mission::before { font-size: 200px; top: -40px; }
  .el-mission__closing { font-size: 15px; }

  /* TESTIMONIALS */
  .el-testimonial { padding: 22px; }

  /* CTA */
  .el-cta__actions { flex-direction: column; align-items: stretch; }
  .el-cta__actions .el-btn { text-align: center; justify-content: center; }
  .el-cta__social  { flex-direction: column; gap: 14px; }

  /* FOOTER */
  .el-footer__grid   { grid-template-columns: 1fr; gap: 28px; }
  .el-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .el-footer__logo-img { height: 36px; }

  /* SECTION */
  .el-section__header p { font-size: 15px; }

  /* BUTTONS */
  .el-btn { padding: 13px 22px; font-size: 14px; }

  /* PROCESS */
  .el-process__item  { gap: 16px; padding: 20px 0; }
  .el-process__num   { width: 40px; height: 40px; font-size: 15px; flex-shrink: 0; }

  /* FOUNDER CARD */
  .el-founder-card  { padding: 22px 18px; }
  .el-founder__quote { font-size: 15px; padding: 14px 16px; }
}

/* =================================
   RESPONSIVE — 400px (small phones)
   ================================= */

@media (max-width: 400px) {
  .el-container { padding: 0 14px; }
  h1 { font-size: 23px; }
  h2 { font-size: 20px; }
  .el-hero__stats { flex-direction: column; gap: 14px; padding-top: 24px; }
  .el-about__facts { grid-template-columns: 1fr; }
  .el-founder-card__facts { grid-template-columns: 1fr 1fr; }
}

/* ===== ARTICLE MODAL BODY ===== */
.el-article-body h2 { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--primary); margin: 24px 0 10px; }
.el-article-body h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--primary); margin: 20px 0 8px; }
.el-article-body p  { margin: 0 0 14px; }
.el-article-body ul, .el-article-body ol { padding-left: 24px; margin: 10px 0 14px; }
.el-article-body li { margin-bottom: 6px; }
.el-article-body a  { color: #2AABEE; }
.el-article-body strong { font-weight: 700; }
