/* ===== GUIMAX – ENGLISH-FLUENCY.CSS ===== */

/* ===== HERO ===== */
.ef-hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #fff 55%, #f0fff4 100%);
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}
.ef-hero-bg {
  position: absolute;
  top: -150px; right: -150px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(0,112,243,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ef-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ef-hero-text h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin: 16px 0 20px;
}
.ef-hero-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 520px;
}
.ef-hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.ef-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gray-800);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ef-chip i { color: var(--red); }

/* HERO VISUAL — step pills */
.ef-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ef-steps-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 380px;
}
.ef-step-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
  background: #fff;
  border: 1.5px solid var(--gray-200);
  transition: transform 0.3s;
}
.ef-step-pill:hover { transform: translateY(-3px); }
.ef-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ef-pill-1 { border-color: #ffd6d6; }
.ef-pill-2 { border-color: #d6e8ff; }
.ef-pill-3 { border-color: #d6ffd6; }
.ef-pill-4 { border-color: #fff3d6; }
.ef-pill-5 { border-color: #f3d6ff; }
.ef-pill-6 { border-color: #d6fff3; }
.ef-pill-7 { border-color: #ffd6f3; }
.ef-pill-8 { border-color: #d6d6ff; }

/* ===== MAIN TWO-COLUMN ===== */
.ef-main { background: var(--off-white); }
.ef-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ef-col-header { margin-bottom: 32px; }
.ef-col-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--dark);
  margin: 10px 0 12px;
  line-height: 1.3;
}
.ef-col-header p { font-size: 0.93rem; color: var(--gray-600); }

/* 12 Steps list */
.ef-steps-list { display: flex; flex-direction: column; gap: 0; }
.ef-step-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.ef-step-item:last-child { border-bottom: none; }
.ef-step-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(255,0,0,0.25);
}
.ef-step-content h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}
.ef-step-content p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Duration box */
.ef-duration-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--red), #cc0000);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 28px;
}
.ef-duration-box i { font-size: 1.8rem; opacity: 0.9; flex-shrink: 0; }
.ef-duration-box strong { display: block; font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.ef-duration-box span { font-size: 0.83rem; opacity: 0.88; }

/* WHY column */
.ef-why-list { display: flex; flex-direction: column; gap: 0; }
.ef-why-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.ef-why-item:last-child { border-bottom: none; }
.ef-why-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: #fff0f0;
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ef-why-item h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.ef-why-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== WHO IS THIS FOR ===== */
.ef-who { background: #fff; }
.ef-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ef-who-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ef-who-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ef-who-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff0f0;
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.ef-who-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.ef-who-card p { font-size: 0.87rem; color: var(--gray-600); line-height: 1.6; }

/* ===== CTA BAND ===== */
.ef-cta-band {
  background: linear-gradient(135deg, var(--red), #cc0000);
  padding: 64px 0;
}
.ef-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ef-cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.ef-cta-text p { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.highlight-white { color: #ffd6d6; }
.ef-cta-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ef-cta-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.ef-cta-meta i { color: #ffd6d6; }
.ef-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.btn-white-solid {
  background: #fff; color: var(--red);
  border: 2px solid #fff; border-radius: 50px;
  font-weight: 700; padding: 13px 28px; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; transition: var(--transition);
}
.btn-white-solid:hover { background: transparent; color: #fff; }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.65); border-radius: 50px;
  font-weight: 700; padding: 13px 28px; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ef-hero-inner  { grid-template-columns: 1fr; gap: 40px; }
  .ef-main-grid   { grid-template-columns: 1fr; }
  .ef-who-grid    { grid-template-columns: repeat(2, 1fr); }
  .ef-steps-preview { max-width: 100%; }
}
@media (max-width: 768px) {
  .ef-who-grid    { grid-template-columns: 1fr; }
  .ef-cta-inner   { flex-direction: column; text-align: center; }
  .ef-cta-actions { justify-content: center; }
  .ef-cta-meta    { justify-content: center; }
  .ef-steps-preview { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ef-hero-chips  { gap: 8px; }
  .ef-steps-preview { grid-template-columns: 1fr 1fr; }
}
