@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#f7fbf8;
  --surface:#ffffff;
  --surface-2:#eef7f0;
  --text:#143222;
  --muted:#5f7467;
  --primary:#8fd694;
  --primary-strong:#5dbb63;
  --primary-dark:#1f5c3a;
  --border:#dcecdf;
  --shadow:0 18px 44px rgba(31,92,58,0.10);
  --shadow-strong:0 22px 56px rgba(31,92,58,0.16);
  --radius:18px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Plus Jakarta Sans',Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(143,214,148,0.24), transparent 22%),
    radial-gradient(circle at right 10%, rgba(31,92,58,0.08), transparent 18%),
    linear-gradient(180deg, #fbfefb 0%, #f4fbf5 100%);
  color:var(--text);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.84);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(220,236,223,0.85);
  padding:18px 40px 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  min-height:96px;
  position:sticky;
}

header h1{
  margin:0;
  position:absolute;
  left:40px;
  top:50%;
  transform:translateY(-50%);
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:38px;
  font-weight:700;
  color:var(--primary-dark);
  letter-spacing:0.02em;
  line-height:0.95;
}

nav{
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
  padding:10px 16px;
  border:1px solid rgba(220,236,223,0.85);
  border-radius:999px;
  background:rgba(255,255,255,0.74);
  box-shadow:0 12px 30px rgba(31,92,58,0.07);
}

nav a{
  white-space:nowrap;
  font-weight:600;
  color:var(--text);
  padding:10px 16px;
  border-radius:999px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-size:13px;
  transition:transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}

nav a:hover{
  color:var(--primary-strong);
  background:linear-gradient(135deg, rgba(143,214,148,0.22), rgba(93,187,99,0.10));
  box-shadow:0 10px 24px rgba(31,92,58,0.10);
  transform:translateY(-1px);
}

nav a.validation-module-link{
  color:#ffffff;
  background:linear-gradient(135deg, #1f5c3a, #2f7d4f);
  box-shadow:0 10px 24px rgba(31,92,58,0.18);
}

nav a.validation-module-link:hover{
  color:#ffffff;
  background:linear-gradient(135deg, #18482e, #276942);
  box-shadow:0 12px 28px rgba(31,92,58,0.22);
}

.hero{
  position:relative;
  overflow:hidden;
  padding:120px 40px 110px;
  text-align:center;
  background:
    radial-gradient(circle at top left, rgba(143,214,148,0.40), transparent 32%),
    radial-gradient(circle at right center, rgba(93,187,99,0.22), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f2fbf4 100%);
}

.hero::before{
  content:"";
  position:absolute;
  inset:auto -120px -140px auto;
  width:360px;
  height:360px;
  background:radial-gradient(circle, rgba(143,214,148,0.25), transparent 65%);
  pointer-events:none;
}

.hero h2{
  margin:0 auto 18px;
  max-width:980px;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:72px;
  line-height:1.06;
  letter-spacing:-0.02em;
  color:var(--primary-dark);
}

.hero p{
  max-width:760px;
  margin:0 auto;
  font-size:20px;
  color:var(--muted);
}

.hero-actions{
  margin-top:34px;
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:170px;
  padding:15px 26px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  cursor:pointer;
  border:1px solid transparent;
}

.btn:hover{
  transform:translateY(-3px) scale(1.01);
}

.btn-primary{
  background:linear-gradient(135deg,var(--primary-strong),var(--primary-dark));
  color:#fff;
  box-shadow:0 14px 28px rgba(31,92,58,0.22);
}

.btn-secondary{
  background:rgba(255,255,255,0.92);
  color:var(--primary-dark);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.btn-primary:hover{
  box-shadow:var(--shadow-strong);
}

.btn-secondary:hover{
  border-color:rgba(93,187,99,0.42);
  box-shadow:0 18px 36px rgba(31,92,58,0.12);
}

.section{
  max-width:1180px;
  margin:0 auto;
  padding:84px 40px;
}

.section-header{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.eyebrow{
  display:inline-block;
  margin-bottom:12px;
  padding:7px 14px;
  border-radius:999px;
  background:var(--surface-2);
  color:var(--primary-dark);
  font-size:13px;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.section h3{
  margin:0 0 14px;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:48px;
  line-height:1.1;
  letter-spacing:-0.02em;
  color:var(--primary-dark);
}

.section-header p{
  margin:0;
  color:var(--muted);
  font-size:18px;
}

.section > h3{
  margin:0 0 20px;
  text-align:center;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:48px;
  line-height:1.05;
  letter-spacing:-0.02em;
  color:var(--primary-dark);
}

.section > p{
  max-width:760px;
  margin:0 auto 18px;
  text-align:center;
  color:var(--muted);
  font-size:18px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover{
  transform:translateY(-4px);
  border-color:rgba(93,187,99,0.34);
  box-shadow:var(--shadow-strong);
}

.card h4{
  margin:0 0 12px;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:30px;
  color:var(--primary-dark);
  letter-spacing:-0.01em;
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:16px;
}

.feature-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:26px;
  align-items:stretch;
}

.feature-panel{
  background:linear-gradient(180deg,#ffffff 0%, #f2fbf4 100%);
  border:1px solid var(--border);
  border-radius:26px;
  padding:36px;
  box-shadow:var(--shadow);
}

.feature-panel h4{
  margin:0 0 12px;
  font-size:28px;
  color:var(--primary-dark);
}

.feature-panel p{
  margin:0 0 22px;
  color:var(--muted);
  font-size:17px;
}

.bullets{
  display:grid;
  gap:14px;
}

.bullet{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.bullet-mark{
  width:32px;
  height:32px;
  min-width:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary);
  color:var(--primary-dark);
  font-weight:800;
}

.stat-card{
  background:var(--primary-dark);
  color:#fff;
  border-radius:26px;
  padding:36px;
  box-shadow:0 18px 35px rgba(31,92,58,0.16);
}

.stat-card h4{
  margin:0 0 18px;
  font-size:20px;
  color:#dff5e2;
}

.stat{
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,0.14);
}

.stat:first-of-type{
  border-top:none;
  padding-top:0;
}

.stat strong{
  display:block;
  font-size:34px;
  line-height:1;
  margin-bottom:8px;
}

.testimonials{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.testimonial{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

.testimonial p{
  margin:0 0 18px;
  color:var(--muted);
}

.testimonial .name{
  font-weight:800;
  color:var(--primary-dark);
}

.cta{
  padding:0 40px 90px;
}

.cta-box{
  max-width:1180px;
  margin:0 auto;
  background:linear-gradient(135deg,var(--primary-dark),#2c7a4c);
  color:#fff;
  border-radius:30px;
  padding:44px;
  box-shadow:0 20px 40px rgba(31,92,58,0.18);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
}

.cta-box h3{
  margin:0 0 10px;
  font-size:36px;
  line-height:1.08;
  color:#fff;
}

.cta-box p{
  margin:0;
  color:rgba(255,255,255,0.86);
  max-width:720px;
}

footer{
  border-top:1px solid var(--border);
  background:#fff;
  color:var(--muted);
  text-align:center;
  padding:28px;
  margin-top:20px;
}

.catalog-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:30px;
  padding:18px 22px;
  border:1px solid var(--border);
  border-radius:26px;
  background:rgba(255,255,255,0.76);
  box-shadow:var(--shadow);
}

.filter-pills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.filter-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid var(--border);
  color:var(--primary-dark);
  font-size:14px;
  font-weight:700;
  box-shadow:var(--shadow);
}

.catalog-note{
  color:var(--muted);
  font-size:14px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.course-catalog-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:26px;
}

.course-card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:22px;
  min-height:100%;
  padding:32px;
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,251,245,0.98) 100%);
}

.course-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background:linear-gradient(180deg, var(--primary-strong), rgba(31,92,58,0.22));
}

.course-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.course-index,
.course-format{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.10em;
}

.course-index{
  min-width:46px;
  background:rgba(31,92,58,0.08);
  color:var(--primary-dark);
}

.course-format{
  background:rgba(143,214,148,0.18);
  color:var(--primary-dark);
}

.course-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.course-card-body{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.course-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:var(--surface-2);
  color:var(--primary-dark);
  font-size:12px;
  font-weight:800;
  letter-spacing:0.03em;
  text-transform:uppercase;
}

.course-details{
  display:grid;
  gap:10px;
  color:var(--muted);
  font-size:15px;
}

.course-details-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.course-details-grid div{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:14px 16px;
  border:1px solid rgba(220,236,223,0.92);
  border-radius:18px;
  background:rgba(255,255,255,0.9);
}

.course-details strong{
  color:var(--primary-dark);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.course-details span{
  color:var(--text);
  font-size:15px;
  font-weight:700;
}

.course-summary{
  margin:0;
  color:var(--muted);
  font-size:16px;
}

.course-capacity{
  margin:0;
  color:var(--primary-dark);
  font-size:15px;
  font-style:italic;
}

.course-card-footer{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-top:auto;
  padding-top:20px;
  border-top:1px solid rgba(220,236,223,0.9);
}

.course-trainer{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.course-trainer-label{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.course-trainer strong{
  color:var(--primary-dark);
  font-size:18px;
}

.course-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:auto;
}

.course-actions .btn{
  min-width:auto;
  padding:12px 18px;
  font-size:15px;
}

.info-strip{
  margin-top:34px;
  background:linear-gradient(180deg,#ffffff 0%, #f2fbf4 100%);
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}

.info-strip h4{
  margin:0 0 12px;
  font-size:24px;
  color:var(--primary-dark);
}

.info-strip p{
  margin:0;
  color:var(--muted);
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:26px;
}

.step-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
}

.step-number{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  background:var(--primary);
  color:var(--primary-dark);
  font-weight:800;
}

.step-card h4{
  margin:0 0 10px;
  font-size:18px;
  color:var(--primary-dark);
}

.step-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

@media (max-width: 1100px){
  header{
    flex-direction:column;
    justify-content:center;
    padding:18px 18px 16px;
    min-height:auto;
  }

  header h1{
    position:static;
    transform:none;
    text-align:center;
  }

  .steps-grid{
    grid-template-columns:1fr 1fr;
  }

  .course-catalog-grid{
    grid-template-columns:1fr;
  }

  .course-details-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width: 780px){
  header{
    padding:16px 18px;
  }

  nav{
    width:100%;
    gap:10px;
    padding:10px;
  }

  nav a{
    flex:1 1 calc(50% - 10px);
    text-align:center;
    padding:11px 12px;
  }

  .hero h2{
    font-size:48px;
  }

  .catalog-toolbar{
    align-items:flex-start;
  }

  .course-card{
    padding:24px;
  }

  .course-details-grid{
    grid-template-columns:1fr;
  }

  .course-card-footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .steps-grid{
    grid-template-columns:1fr;
  }
}

.trainer-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #111827, #374151);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

/* Compact desktop pass for 15 inch laptops. */
@media (min-width: 781px){
  header{
    min-height:74px;
    padding:12px 30px;
    gap:14px;
  }

  header h1{
    left:30px;
    font-size:30px;
  }

  nav{
    gap:9px;
    padding:7px 10px;
  }

  nav a{
    padding:8px 12px;
    font-size:12px;
  }

  .hero{
    padding:78px 32px 70px;
  }

  .hero h2{
    font-size:56px;
    margin-bottom:12px;
  }

  .hero p{
    font-size:17px;
  }

  .hero-actions{
    margin-top:24px;
    gap:12px;
  }

  .btn{
    min-width:145px;
    padding:12px 20px;
    font-size:13px;
  }

  .section{
    max-width:1120px;
    padding:56px 32px;
  }

  .section-header{
    margin-bottom:28px;
  }

  .eyebrow{
    margin-bottom:8px;
    padding:5px 11px;
    font-size:11px;
  }

  .section h3,
  .section > h3{
    font-size:40px;
    margin-bottom:10px;
  }

  .section-header p,
  .section > p{
    font-size:16px;
  }

  .cards,
  .testimonials{
    gap:16px;
  }

  .card,
  .testimonial{
    border-radius:18px;
    padding:20px;
  }

  .card h4{
    font-size:25px;
    margin-bottom:8px;
  }

  .card p{
    font-size:14px;
  }

  .feature-grid{
    gap:18px;
  }

  .feature-panel,
  .stat-card{
    border-radius:20px;
    padding:26px;
  }

  .stat{
    padding:13px 0;
  }

  .stat strong{
    font-size:28px;
  }

  .cta{
    padding:0 32px 64px;
  }

  .cta-box{
    border-radius:22px;
    padding:30px;
  }

  .cta-box h3{
    font-size:31px;
  }

  .trainer-avatar{
    width:72px;
    height:72px;
    margin-bottom:12px;
  }
}
