:root{
  --bg:#f5f7fb;
  --bg-soft:#eef3fa;
  --surface:#ffffff;
  --surface-alt:#f8fbff;
  --line:#dce6f3;
  --line-strong:#c7d8ee;
  --text:#10233c;
  --muted:#5f748f;
  --blue:#1d7eff;
  --blue-2:#4dbbff;
  --green:#1f9d57;
  --shadow:0 18px 40px rgba(20,48,87,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(29,126,255,.08), transparent 22%),
    linear-gradient(180deg,#f7f9fc 0%, #f4f7fb 100%);
}
a{text-decoration:none;color:inherit}
button,input{font:inherit}
.container{width:min(1320px, calc(100% - 40px));margin:0 auto}

.site-header{padding:18px 0 42px}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:74px;
  padding:0 22px;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 10px 26px rgba(16,35,60,.06);
  position:relative;
  z-index:10;
}
.brand{display:flex;align-items:center}
.brand img{display:block;width:250px;max-width:100%;height:auto}
.nav-toggle{display:none;border:0;background:transparent;color:var(--text);font-size:1.55rem;cursor:pointer}
.nav-links,.nav-actions{display:flex;align-items:center;gap:10px}
.nav-links a,.student-link{
  padding:10px 14px;
  font-size:.95rem;
  font-weight:700;
  color:#35506d;
  border-radius:999px;
  transition:.2s ease;
}
.nav-links a:hover,.student-link:hover{background:#eef5ff;color:var(--blue)}
.student-link{border:1px solid var(--line)}
.secure-pill{
  padding:10px 14px;
  border-radius:999px;
  white-space:nowrap;
  color:#19784b;
  background:#ebf8f1;
  border:1px solid #cfeeda;
  font-size:.9rem;
  font-weight:800;
}

.hero-shell{
  margin-top:18px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.94) 43%, rgba(248,251,255,.82) 63%, rgba(255,255,255,.32) 100%),
    url('hero-easa-bg.jpg') center right / cover no-repeat;
  box-shadow:var(--shadow);
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(720px, .98fr);
  gap:28px;
  align-items:start;
  padding:34px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid #d9e8ff;
  background:#eef5ff;
  color:var(--blue);
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.hero-copy{max-width:620px;padding:4px 0 10px}
.hero-copy h1{
  margin:18px 0 12px;
  font-size:clamp(2.7rem, 5.3vw, 4.7rem);
  line-height:1.03;
  letter-spacing:-.055em;
  color:#0f223a;
}
.hero-copy h1 span{color:#1772ee}
.hero-lead{
  margin:0 0 12px;
  font-size:1.18rem;
  font-weight:800;
  color:#12335a;
}
.hero-text{
  margin:0;
  color:var(--muted);
  line-height:1.76;
  font-size:1.03rem;
  max-width:610px;
}
.hero-bullets{list-style:none;padding:0;margin:24px 0 0;display:grid;gap:12px}
.hero-bullets li{
  position:relative;
  padding-left:30px;
  color:#233b58;
  line-height:1.55;
  font-weight:600;
}
.hero-bullets li::before{
  content:'✓';
  position:absolute;
  left:0;
  top:2px;
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg, var(--blue), var(--blue-2));
  color:#fff;
  font-size:.78rem;
  font-weight:900;
}

.hero-pricing{padding:4px 0 0}
.plans-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.plans-top h2{margin:0;font-size:2rem;line-height:1.08;letter-spacing:-.045em;color:#10233c}
.plans-top p{margin:8px 0 0;color:var(--muted);line-height:1.55}
.currency-switch{
  display:flex;
  gap:6px;
  padding:5px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 8px 20px rgba(20,48,87,.08);
}
.currency-btn{
  border:0;
  background:transparent;
  color:#58708e;
  padding:11px 17px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
}
.currency-btn.active{
  background:linear-gradient(135deg, var(--blue), #2f9bff);
  color:#fff;
  box-shadow:0 10px 24px rgba(29,126,255,.22);
}
.plans-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  align-items:stretch;
}
.plan-card{
  position:relative;
  min-width:0;
  height:100%;
  display:flex;
  flex-direction:column;
  padding:22px 18px 18px;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.96);
  box-shadow:0 18px 34px rgba(20,48,87,.08);
}
.plan-card.featured{
  border-color:#b8d6ff;
  background:linear-gradient(180deg, #ffffff, #f3f8ff);
  box-shadow:0 20px 38px rgba(29,126,255,.12);
}
.badge{
  position:absolute;
  top:-12px;
  left:16px;
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:linear-gradient(135deg, #5ea9ff, #2b7cff);
  color:#fff;
  font-size:.72rem;
  font-weight:900;
}
.plan-head h3{
  margin:2px 0 6px;
  font-size:1.42rem;
  line-height:1.12;
  letter-spacing:-.04em;
  color:#10233c;
}
.plan-head p{margin:0;color:#6d8098;font-size:.93rem;font-weight:700}
.price{display:block;margin:16px 0 16px;min-height:70px}
.price strong{
  display:block;
  max-width:100%;
  overflow-wrap:anywhere;
  white-space:nowrap;
  font-size:clamp(1.9rem, 1.35rem + 1.2vw, 2.55rem);
  line-height:1.02;
  letter-spacing:-.055em;
  color:#1678f2;
  font-variant-numeric:tabular-nums;
}
.price span{
  display:block;
  margin-top:8px;
  color:#6d8199;
  font-size:.84rem;
  font-weight:800;
}
.plan-benefits{list-style:none;margin:0 0 16px;padding:0;display:grid;gap:10px}
.plan-benefits li{
  position:relative;
  padding-left:22px;
  color:#28405c;
  line-height:1.45;
  font-size:.92rem;
}
.plan-benefits li::before{
  content:'●';
  position:absolute;
  left:0;
  top:1px;
  color:#2d93ff;
  font-size:.82rem;
}
.checkout-form{display:grid;gap:10px;margin-top:auto}
.checkout-form label{display:grid;gap:7px}
.checkout-form label span{font-size:.76rem;font-weight:800;color:#556d89}
.checkout-form input{
  width:100%;
  min-height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  padding:12px 13px;
  outline:none;
}
.checkout-form input::placeholder{color:#90a3ba}
.checkout-form input:focus{border-color:#9fc7ff;box-shadow:0 0 0 4px rgba(29,126,255,.10)}
.subscribe-btn,.cta-btn{
  border:0;
  min-height:50px;
  border-radius:15px;
  padding:14px 16px;
  background:linear-gradient(135deg, var(--blue), var(--blue-2));
  color:#fff;
  font-weight:900;
  font-size:1rem;
  cursor:pointer;
  box-shadow:0 15px 30px rgba(29,126,255,.20);
  transition:transform .2s ease, box-shadow .2s ease;
  text-align:center;
}
.subscribe-btn:hover,.cta-btn:hover{transform:translateY(-1px);box-shadow:0 18px 36px rgba(29,126,255,.28)}
.safe-note{display:block;margin-top:12px;color:#6f8298;font-size:.8rem;font-weight:800}

.feature-row{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}
.feature-row article,
.values-grid article,
.faq-grid details{
  border-radius:24px;
  border:1px solid var(--line);
  background:var(--surface);
  box-shadow:0 14px 28px rgba(20,48,87,.06);
}
.feature-row article{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:22px;
}
.feature-row article span{
  width:46px;
  min-width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#eef5ff;
  color:#2e99ff;
  font-size:1.3rem;
}
.feature-row h3{margin:0 0 8px;font-size:1.05rem;color:#10233c}
.feature-row p{margin:0;color:var(--muted);line-height:1.58;font-size:.93rem}

.trust-band{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:0;
  overflow:hidden;
  border-radius:26px;
  background:var(--surface);
  color:#10233f;
  box-shadow:0 18px 38px rgba(20,48,87,.08);
  border:1px solid var(--line);
}
.trust-band article{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:24px 22px;
  border-right:1px solid #edf1f7;
}
.trust-band article:last-child{border-right:0}
.trust-icon{
  width:44px;
  min-width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#edf4ff;
  color:#1d7eff;
  font-weight:900;
}
.trust-icon.success{background:#e9f8ef;color:#1caa58}
.trust-band h3{margin:0 0 6px;font-size:1.02rem;color:#10233c}
.trust-band p{margin:0;color:#5c728d;line-height:1.55;font-size:.91rem}
.payment-brands{display:flex;flex-direction:column;gap:8px;min-width:112px}
.brand-stripe,.brand-mp{display:inline-block;font-weight:900;line-height:1;text-transform:lowercase}
.brand-stripe{font-size:1.95rem;color:#635bff}
.brand-mp{font-size:1.04rem;color:#0084ff}

.values-section{margin-top:70px}
.section-heading{max-width:840px;margin:0 auto 26px;text-align:center}
.section-heading.left{max-width:820px;margin:0 0 26px;text-align:left}
.section-heading h2{margin:14px 0 10px;font-size:clamp(2rem,4vw,3.2rem);line-height:1.08;letter-spacing:-.05em;color:#10233c}
.section-heading p{margin:0;color:var(--muted);line-height:1.72}
.values-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}
.values-grid article{padding:24px 22px}
.values-grid h3{margin:0 0 10px;font-size:1.12rem;color:#10233c}
.values-grid p{margin:0;color:var(--muted);line-height:1.62}

.faq-section{margin-top:70px}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.faq-grid details{padding:18px 20px}
.faq-grid summary{cursor:pointer;font-weight:900;color:#10233c}
.faq-grid p{margin:12px 0 0;color:var(--muted);line-height:1.66}

.final-cta{
  margin-top:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:34px 36px;
  border-radius:28px;
  border:1px solid #cfe0f8;
  background:linear-gradient(135deg, #eef6ff, #f8fbff);
  box-shadow:0 18px 38px rgba(20,48,87,.08);
}
.final-cta span{display:inline-block;color:#1976ef;font-size:.82rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em}
.final-cta h2{margin:10px 0 10px;font-size:clamp(2rem,4vw,3rem);line-height:1.1;letter-spacing:-.05em;color:#10233c}
.final-cta p{margin:0;color:#5f748f;max-width:700px;line-height:1.67}

.footer{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  padding:34px 0 44px;
  color:#7388a1;
}
.footer p{margin:0 0 8px;line-height:1.6}
.footer small{display:block;line-height:1.6;color:#8799ad}
.footer a{color:#237ff7;font-weight:800}

@media (max-width: 1280px){
  .hero-grid{grid-template-columns:minmax(0,1fr)}
  .hero-copy{max-width:760px}
}

@media (max-width: 1150px){
  .plans-grid,.values-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .feature-row{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .trust-band{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .trust-band article:nth-child(2){border-right:0}
  .trust-band article:nth-child(-n+2){border-bottom:1px solid #edf1f7}
}

@media (max-width: 920px){
  .nav{flex-wrap:wrap;padding:14px 16px}
  .nav-toggle{display:block}
  .nav-links{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding-top:8px;
  }
  .nav-links.open{display:flex}
  .nav-links a,.student-link{background:#f5f9ff;text-align:center}
  .nav-actions{margin-left:auto}
  .secure-pill{display:none}
  .plans-top{flex-direction:column;align-items:flex-start}
  .faq-grid{grid-template-columns:1fr}
  .final-cta{display:grid}
}

@media (max-width: 760px){
  .container{width:min(100% - 24px, 1320px)}
  .site-header{padding-top:12px}
  .brand img{width:185px}
  .nav-actions{width:100%;justify-content:flex-start}
  .hero-grid{padding:22px}
  .hero-copy h1{font-size:clamp(2.2rem,11vw,3.3rem)}
  .hero-lead,.hero-text,.hero-bullets li{font-size:.97rem}
  .plans-grid,.feature-row,.trust-band,.values-grid{grid-template-columns:1fr}
  .trust-band article{border-right:0;border-bottom:1px solid #edf1f7}
  .trust-band article:last-child{border-bottom:0}
  .footer{display:block;text-align:center}
  .footer a{display:inline-block;margin-top:12px}
}

@media (max-width: 430px){
  .hero-grid{padding:18px}
  .eyebrow{font-size:.72rem}
  .plan-head h3{font-size:1.32rem}
  .price strong{font-size:2.05rem}
}
