@charset "UTF-8";
/* CSS Document */
/* ================================
   ECG Academy Hero + Trust Strip
   Wrapper CSS (non-invasive)
   ================================ */

:root {
  --ecg-bg: #ffffff;
  --ecg-hero-max-width: 1200px;
  --ecg-text-main: #111827;      /* near-black */
  --ecg-text-muted: #4b5563;     /* gray-600 */
  --ecg-border-soft: #e5e7eb;    /* gray-200 */
  --ecg-accent: #fbbf24;         /* amber-400 */
  --ecg-accent-dark: #d97706;    /* amber-600 */
  --ecg-secondary: #111827;
  --ecg-trust-bg: #0b3558;
  --ecg-trust-text: #f9fafb;
}

/* -------------
   Hero Section
   ------------- */

.ecg-hero {
  background-color: var(--ecg-bg);
  border-bottom: 1px solid var(--ecg-border-soft);
}

.ecg-hero-inner {
  max-width: var(--ecg-hero-max-width);
  margin: 0 auto;
   padding: 1.0rem 1.5rem 2.5rem; /* reduced top padding */
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Larger screens: side-by-side layout */
@media (min-width: 960px) {
  .ecg-hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.ecg-hero-content {
    flex: 130;
    max-width: 1000px;
}

.ecg-eyebrow {
  font-size: 0.85rem;
	 font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ecg-text-muted);
  margin: 0 0 0.75rem;
}

.ecg-hero-heading {
  font-size: 2.1rem;
  line-height: 1.15;
  color: var(--ecg-text-main);
  margin: 0 0 1rem;
}

@media (min-width: 960px) {
  .ecg-hero-heading {
    font-size: 2.5rem;
  }
}

.ecg-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ecg-text-muted);
  margin: 0 0 1.75rem;
}

.ecg-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.ecg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease-in-out;
}

.ecg-btn-primary {
  background-color: var(--ecg-accent);
  color: #111111;
  border-color: var(--ecg-accent);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.ecg-btn-primary:hover,
.ecg-btn-primary:focus {
  background-color: var(--ecg-accent-dark);
  border-color: var(--ecg-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
}

.ecg-btn-secondary {
  background-color: #eaf2ff;        /* pale blue */
  color: #1e3a8a;                   /* deep blue text */
  border-color: #c7dbff;
}

.ecg-btn-secondary:hover,
.ecg-btn-secondary:focus {
  background-color: #dbeafe;        /* slightly darker on hover */
  border-color: #93c5fd;
  transform: translateY(-1px);
}

.ecg-hero-meta {
  font-size: 1.0rem;
	 line-height: 1.65;
  color: var(--ecg-text-muted);
  margin: 1.0rem;
}

/* Hero image */

.ecg-hero-media {
  flex: 1 1 0;
  text-align: center;
}

.ecg-hero-img {
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
}

/* On small screens, give some top margin */
@media (max-width: 959px) {
  .ecg-hero-media {
    margin-top: 0.75rem;
  }
}

/* ----------------
   Trust Strip
   ---------------- */

.ecg-trust-overlay { margin-bottom: 0 !important; }
.ecg-trust-overlay {
    margin-top: -0.25rem !important;
	padding: 1.0rem 1.4rem !important;
  border-radius: 20px;
}
.ecg-hero { padding-bottom: 2rem; } /* optional: keeps spacing consistent */

<div class="ecg-trust-logos">
  <div class="ecg-trust-logos-label">Trusted by students from:</div>
  <div class="ecg-trust-logos-row">

.ecg-trust-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ecg-trust-rating {
  flex: 0 0 auto;
}

.ecg-trustpilot-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ecg-trustpilot-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.35rem;
  background-color: #22c55e; /* green */
  color: #ffffff;
  font-size: 1rem;
}
.ecg-trustpilot-brand {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.ecg-trustpilot-stars {
  display: inline-flex;
  gap: 0.3rem;
}

.ecg-star {
  width: 18px;
  height: 18px;
  background-color: #22c55e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.ecg-trustpilot-text {
  font-size: 0.9rem;
  color: #374151;
}

.ecg-trustpilot-text {
  font-size: 0.9rem;
  color: #374151;
}

.ecg-trustpilot-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.ecg-trustpilot-text {
  font-size: 0.9rem;
}

.ecg-trustpilot-score {
  font-weight: 600;
}

.ecg-trustpilot-reviews {
  opacity: 0.9;
  margin-left: 0.2rem;
}

.ecg-trustpilot-brand {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.ecg-trustpilot-stars {
  display: inline-flex;
  gap: 0.3rem;
}

.ecg-star {
  width: 18px;
  height: 18px;
  background-color: #22c55e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.ecg-trustpilot-text {
  font-size: 0.9rem;
  color: #374151;
}

/* Adjust spacing on very small screens */
@media (max-width: 480px) {
  .ecg-hero-inner {
    padding-inline: 1rem;
  }

  .ecg-hero-heading {
    font-size: 1.9rem;
  }

  .ecg-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .ecg-btn {
    width: 100%;
    justify-content: center;
  }

  .ecg-trust-logos-row {
    margin-top: 0.25rem;
  }
}

.ecg-hero-media {
  background: transparent !important;
}

.ecg-hero-img {
  background: transparent !important;
  border-radius: 0 !important;   /* important for transparent PNG edges */
  box-shadow: none !important;   /* remove if it looks like a box */
  display: block;
}

.ecg-hero-img { max-width: 360px; } /* existing */
@media (min-width: 960px) {
  .ecg-hero-img { max-width: 480px; }  /* try 480â€“560 */
}
@media (min-width: 960px) {
  .ecg-hero-media { flex: 0 0 44%; }
  .ecg-hero-content { flex: 0 0 56%; }
}
.ecg-hero, .ecg-hero * {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif !important;
}

}
.ecg-hero-heading {
  font-weight: 700 !important;
  letter-spacing: -0.015em;
  /* optional: better scale */
  font-size: clamp(2.0rem, 3vw, 3.0rem);
}

/* ==========================
   Trust Overlay (Pale / Glass)
   ========================== */

.ecg-hero { position: relative; overflow: hidden; }

.ecg-trust-overlay {
  max-width: var(--ecg-hero-max-width);
  margin-top: -0.4rem;
  padding: 1.05rem 1.35rem;

  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.10);

  box-shadow:
    0 12px 34px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.ecg-trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

/* Trustpilot block */
.ecg-trust-rating {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.ecg-trustpilot-label {
  font-weight: 650;
  font-size: 0.95rem;
  color: #111827;
}

.ecg-trustpilot-text {
  font-size: 0.9rem;
  color: #374151;
}

/* Logos */
.ecg-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  flex: 1 1 auto;
}

.ecg-trust-logos-label {
  width: 100%;                 /* ðŸ”‘ THIS is the fix */
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b5563;
}

.ecg-trust-logos-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.ecg-trust-logo {
  max-height: 32px;
  width: auto;
  opacity: 0.95;
}


.ecg-trust-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Mobile */
@media (max-width: 720px) {
  .ecg-trust-overlay {
    padding: 1rem 1.1rem;
  }
  .ecg-trust-logos-label {
    width: 100%;
  }
}

.ecg-trust-logo { filter: none; opacity: 0.95; }
.ecg-trust-logo:hover { filter: none; opacity: 1; }

.ecg-cta-micro {
	  padding-left: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;              /* soft gray */
  line-height: 1.4;
}
	.ecg-feature-list {
  margin-left: 1.25rem;   /* controls indent */
  padding-left: 1rem;
}

.ecg-feature-list li {
  margin-bottom: 0.6rem;  /* space between bullets */
}
.ecg-bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.ecg-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.ecg-bullet-list .bullet {
  font-size: 1.1rem;
  line-height: 1.5;
}

.ecg-bullet-list .text {
  line-height: 1.5;
}
.ecg-sublist {
  margin-top: 0.4rem;
  margin-left: 1.5rem;
  list-style-type: circle;
}
/* Strengthen key section headers on Why page */

.why-page h3 {
  font-weight: 800;       /* try 600–800 */
  letter-spacing: -0.01em;
}

/* If you want ONE specific header stronger */
.why-page .core-differentiator {
  font-weight: 900;
}
.ecg-role-section{
  margin-top:2.5rem;
}

.ecg-role-intro{
  max-width:720px;
  margin-bottom:1.25rem;
  color:#475569;
}

.ecg-role-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.25rem;
}

@media (min-width: 640px){
  .ecg-role-grid{ grid-template-columns:1fr 1fr; }
}

@media (min-width: 1024px){
  .ecg-role-grid{ grid-template-columns:repeat(3,1fr); }
}

.ecg-role-card{
  display:block;
  text-decoration:none;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(15,23,42,.08);
  transition:transform .15s ease, box-shadow .15s ease;
}

.ecg-role-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 44px rgba(15,23,42,.14);
}

.ecg-role-card img{
  width:100%;
  height:240px;          /* consistent height */
  object-fit:cover;
  display:block;
  background:#f1f5f9;    /* subtle fallback if image fails */
}

.ecg-role-content{
  padding:1.15rem 1.3rem 1.4rem;
}

.ecg-role-content h3{
	  margin-bottom:.45rem;
  font-size:1.05rem;
  font-weight:800;
  color:#0f172a;
}

.ecg-role-content p{
  margin:0 0 .65rem;
  font-size:.92rem;
  color:#64748b;
}

.ecg-role-cta{
  font-weight:700;
  font-size:.9rem;
  color:#2563eb;
}
/* Container helps force spacing/stacking */
.ecg-path-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Target only these two buttons */
.ecg-path-btn.button{
  border-radius:14px !important;
  padding:14px 20px !important;
  font-weight:800 !important;
  text-transform:none !important;
  letter-spacing:0 !important;
  box-shadow:0 10px 24px rgba(15,23,42,.10) !important;
  border:1px solid rgba(0,0,0,.06) !important;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

/* Hover polish */
.ecg-path-btn.button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(15,23,42,.14) !important;
  filter:brightness(1.02);
}

/* Make them equal width on desktop */
@media (min-width: 860px){
  .ecg-path-btn.button{
    flex:1 1 360px;
    text-align:center;
  }
}

/* Stack on mobile */
@media (max-width: 540px){
  .ecg-path-buttons{ flex-direction:column; }
  .ecg-path-btn.button{ width:100%; }
}

/* Softer, more "medical clean" colors (override Mexin red/blue) */
.ecg-path-ce.button{
  background:#eef2ff !important;     /* pale indigo */
  color:#1e293b !important;
  border-color:#c7d2fe !important;
}

.ecg-path-nonce.button{
  background:#ecfeff !important;     /* pale cyan */
  color:#1e293b !important;
  border-color:#a5f3fc !important;
}
html { scroll-behavior: smooth; }
.ecg-bullet-list{
  margin: .75rem 0 1.25rem;
  padding-left: 1.1rem;
}
.ecg-bullet-list li{
  margin: .5rem 0;
  color: #334155;
  line-height: 1.55;
}
.ecg-bullet-list li::marker{
  color: #64748b; /* subtle bullet */
}
.ecg-cta-membership.button{
  background:#eef2ff !important;
  border-color:#c7d2fe !important;
  color:#1e293b !important;
}

.ecg-cta-hybrid.button{
  background:#ecfeff !important;
  border-color:#a5f3fc !important;
  color:#1e293b !important;
}
.ecg-nonce-section{
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
}

.ecg-option-grid{
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

.ecg-option-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}

.ecg-option-badge{
  display:inline-block;
  font-weight:800;
  font-size:.85rem;
  color:#0f172a;
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}

.ecg-option-muted{ color:#64748b; font-weight:600; }

.ecg-option-subhead{
  margin: .5rem 0 .25rem;
  color:#334155;
}

.ecg-option-callout{
  margin: .75rem 0 1rem;
  padding: .75rem .85rem;
  border-radius: 14px;
  background:#f8fafc;
  border: 1px solid #e2e8f0;
  color:#0f172a;
  font-weight:700;
}

.ecg-option-cta{
  display:block;
  text-align:center;
  margin-top: 12px;
}

.ecg-option-micro{
  margin: .6rem 0 0;
  font-size: .92rem;
  color:#64748b;
}
/* Button row */
.ecg-path-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Base style for THESE buttons (beats Mexin) */
.ecg-path-btn.button{
  border-radius:14px !important;
  padding:14px 20px !important;
  font-weight:800 !important;
  text-transform:none !important;
  letter-spacing:0 !important;
  border:1px solid rgba(0,0,0,.08) !important;
  box-shadow:0 10px 24px rgba(15,23,42,.10) !important;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Hover */
.ecg-path-btn.button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(15,23,42,.14) !important;
  filter:brightness(1.02);
}

/* Equal width on desktop */
@media (min-width: 860px){
  .ecg-path-btn.button{
    flex:1 1 360px;
    text-align:center;
  }
}

/* Stack on mobile */
@media (max-width: 540px){
  .ecg-path-buttons{ flex-direction:column; }
  .ecg-path-btn.button{ width:100%; }
}

/* Membership button (pale indigo) */
.ecg-cta-membership.button{
  background:#eef2ff !important;
  color:#1e293b !important;
  border-color:#c7d2fe !important;
}

/* Hybrid button (pale cyan) */
.ecg-cta-hybrid.button{
  background:#ecfeff !important;
  color:#1e293b !important;
  border-color:#a5f3fc !important;
}
/* Button row */
.ecg-path-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Base style for THESE buttons (beats Mexin) */
.ecg-path-btn.button{
  border-radius:14px !important;
  padding:14px 20px !important;
  font-weight:800 !important;
  text-transform:none !important;
  letter-spacing:0 !important;
  border:1px solid rgba(0,0,0,.08) !important;
  box-shadow:0 10px 24px rgba(15,23,42,.10) !important;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Hover */
.ecg-path-btn.button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(15,23,42,.14) !important;
  filter:brightness(1.02);
}

/* Equal width on desktop */
@media (min-width: 860px){
  .ecg-path-btn.button{
    flex:1 1 360px;
    text-align:center;
  }
}

/* Stack on mobile */
@media (max-width: 540px){
  .ecg-path-buttons{ flex-direction:column; }
  .ecg-path-btn.button{ width:100%; }
}

/* Membership button (pale indigo) */
.ecg-cta-membership.button{
  background:#eef2ff !important;
  color:#1e293b !important;
  border-color:#c7d2fe !important;
}

/* Hybrid button (pale cyan) */
.ecg-cta-hybrid.button{
  background:#ecfeff !important;
  color:#1e293b !important;
  border-color:#a5f3fc !important;
}
/* Primary CTA – Orange */
.ecg-cta-primary,
.button.primary {
  background: #fbbf24;        /* your orange */
  color: #ffffff !important;  /* WHITE text */
  border: none;
  font-weight: 800;
}

.ecg-cta-primary:hover {
  background: #f59e0b;        /* slightly darker on hover */
}
/* Force primary CTA text color (beats Mexin) */
.ecg-btn.ecg-btn-primary,
.ecg-btn.ecg-btn-primary:visited,
.ecg-btn.ecg-btn-primary:hover,
.ecg-btn.ecg-btn-primary:focus {
  color: #0b1220 !important; /* deep near-black */
  text-decoration: none !important;
}
.ecg-btn.ecg-btn-primary {
  background-color: var(--ecg-accent) !important;
  border-color: var(--ecg-accent) !important;
}
.ecg-btn.ecg-btn-primary:hover,
.ecg-btn.ecg-btn-primary:focus {
  background-color: var(--ecg-accent-dark) !important;
  border-color: var(--ecg-accent-dark) !important;
}
.ecg-pricing-mini{ margin-top:2.25rem; padding-top:1.5rem; border-top:1px solid #e5e7eb; }
.ecg-pricing-title{ margin:0 0 .25rem; font-weight:750; }
.ecg-pricing-sub{ margin:0 0 1.25rem; color:#475569; }

.ecg-price-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.25rem;
}

.ecg-price-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:1.25rem;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.ecg-price-highlight{
  border-color:#c7d2fe;
  background:linear-gradient(180deg, rgba(238,242,255,.7), #fff 55%);
  position:relative;
}

.ecg-badge{
  position:absolute;
  top:12px; right:12px;
  font-size:.8rem;
  background:#1e3a8a;
  color:#fff;
  padding:.3rem .55rem;
  border-radius:999px;
}

.ecg-price{ margin:.5rem 0 .25rem; }
.ecg-price-main{ font-size:2rem; font-weight:800; letter-spacing:-.02em; }
.ecg-price-term{ color:#475569; margin-left:.25rem; }
.ecg-price-note{ color:#475569; font-size:.95rem; margin-bottom:.75rem; }

.ecg-checklist{ margin:.75rem 0 1rem; padding-left:1.1rem; color:#111827; }
.ecg-checklist li{ margin:.35rem 0; }

.ecg-cta{
  display:inline-flex;
  width:100%;
  justify-content:center;
  align-items:center;
  border-radius:14px;
  padding:.9rem 1rem;
  text-decoration:none;
  font-weight:750;
  border:1px solid transparent;
}

.ecg-cta-primary{
  background:#111827;
  color:#fff;
}
.ecg-cta-primary:hover{ transform:translateY(-1px); }

.ecg-cta-secondary{
  background:#eef2ff;
  color:#1e3a8a;
  border-color:#c7d2fe;
}
.ecg-cta-secondary:hover{ transform:translateY(-1px); }

.ecg-micro{ margin-top:.6rem; font-size:.85rem; color:#64748b; text-align:center; }

@media (max-width: 860px){
  .ecg-price-grid{ grid-template-columns:1fr; }
}

