:root{
  --yellow:#ffe28a;
  --yellow-soft:#fff1b8;
  --yellow-pale:#fff8dc;
  --blue:#004faf;
  --blue-dark:#073466;
  --blue-soft:#dff1ff;
  --red:#d0001f;
  --cream:#fffaf0;
  --paper:#fffdf4;
  --white:#ffffff;
  --ink:#07142d;
  --muted:#5d6472;
  --line:rgba(0,79,175,.14);
  --dots:rgba(0,79,175,.095);
  --dots-red:rgba(208,0,31,.08);
  --shadow:0 24px 70px rgba(7,20,45,.11);
  --shadow-soft:0 16px 44px rgba(7,20,45,.08);
  --radius:30px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Montserrat",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:#fffaf0;
  color:var(--ink);
  letter-spacing:-.025em;
}

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

img{
  display:block;
  max-width:100%;
}

.site-bg{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 9px 9px,rgba(0,79,175,.095) 1.05px,transparent 1.2px) 0 0/22px 22px,
    radial-gradient(circle at 18% 18%,rgba(255,255,255,.72),transparent 36%),
    radial-gradient(circle at 83% 22%,rgba(223,241,255,.58),transparent 38%),
    radial-gradient(circle at 18% 62%,rgba(255,226,138,.18),transparent 38%),
    radial-gradient(circle at 82% 72%,rgba(255,255,255,.58),transparent 40%),
    linear-gradient(135deg,#fffdf4 0%,#fff9e8 30%,#f8fcff 58%,#f1f9ff 78%,#fffaf0 100%);
}

.site-bg::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:.58;
  background:url("data:image/svg+xml,%3Csvg width='1800' height='2600' viewBox='0 0 1800 2600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-120 560C145 415 355 505 570 295C762 108 965 105 1140 240C1346 398 1300 600 1528 728C1684 815 1774 880 1900 1026' fill='none' stroke='%23ffffff' stroke-opacity='.7' stroke-width='20' stroke-linecap='round' stroke-dasharray='28 30'/%3E%3Cpath d='M-130 1260C105 1128 345 1226 552 1034C765 836 980 832 1170 972C1376 1126 1370 1340 1604 1444C1740 1505 1840 1595 1910 1724' fill='none' stroke='%23004faf' stroke-opacity='.045' stroke-width='18' stroke-linecap='round' stroke-dasharray='28 32'/%3E%3Cpath d='M80 2205C260 2044 455 2118 620 1980C788 1840 1015 1842 1182 1990C1352 2140 1408 2266 1604 2356' fill='none' stroke='%23d0001f' stroke-opacity='.035' stroke-width='18' stroke-linecap='round'/%3E%3C/svg%3E") center top/1800px auto no-repeat;
}

.site-bg::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:.75;
  background:
    radial-gradient(circle at 62% 20%,rgba(255,255,255,.38),transparent 34%),
    radial-gradient(circle at 42% 58%,rgba(255,226,138,.12),transparent 38%),
    radial-gradient(circle at 74% 82%,rgba(0,79,175,.025),transparent 40%);
}

.site-bg>*{
  position:relative;
  z-index:1;
}

.container{
  width:min(1120px,calc(100% - 44px));
  margin-inline:auto;
}

.container-narrow{
  width:min(1000px,calc(100% - 44px));
  margin-inline:auto;
}

.container-wide{
  width:min(1280px,calc(100% - 44px));
  margin-inline:auto;
}

.announcement{
  background:var(--blue);
  color:#fff;
  text-align:center;
  font-size:15px;
  font-weight:900;
  padding:12px 16px;
  letter-spacing:-.015em;
}

.site-header{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  padding:0 max(22px,calc((100vw - 1120px)/2));
  background:linear-gradient(180deg,rgba(255,253,244,.9),rgba(255,253,244,.68));
  backdrop-filter:blur(18px);
  border-bottom:0;
  position:sticky;
  top:0;
  z-index:50;
}

.site-header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-56px;
  height:56px;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,253,244,.58),rgba(255,253,244,0));
}

.logo-link{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.brand-logo{
  width:auto;
  height:48px;
  max-width:290px;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:34px;
  margin-left:auto;
  color:var(--blue);
  font-size:15px;
  font-weight:900;
}

.nav a:hover{
  color:var(--red);
}

.menu-toggle{
  display:none;
  background:var(--red);
  color:#fff;
  border:0;
  border-radius:14px;
  padding:10px 14px;
  font:inherit;
  font-size:15px;
  font-weight:900;
}

.section-pad{
  padding:96px 0;
}

.hero{
  min-height:calc(100vh - 108px);
  display:flex;
  align-items:center;
  text-align:center;
  padding:72px 0 102px;
}

.hero-clean{
  min-height:calc(100vh - 126px);
  background:transparent;
}

.label-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,253,244,.94);
  border:3px solid rgba(255,255,255,.82);
  border-radius:999px;
  padding:10px 22px;
  color:var(--red);
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  box-shadow:0 12px 26px rgba(7,20,45,.08);
  white-space:nowrap;
}

.hero h1,
.page-hero h1{
  margin:0 auto 30px;
  max-width:1040px;
  color:var(--blue);
  font-size:clamp(40px,5.2vw,72px);
  line-height:1.02;
  font-weight:900;
}

.hero h1 strong,
.page-hero h1 strong,
.accent-red{
  color:var(--red);
}

.accent-yellow{
  color:var(--yellow);
}

.hero-sub,
.page-sub{
  max-width:780px;
  margin:0 auto;
  color:#072b5d;
  font-size:clamp(17px,1.35vw,21px);
  line-height:1.48;
  font-weight:800;
}

.hero-clean .hero-sub{
  max-width:900px;
  padding-inline:24px;
  font-size:clamp(16px,1.12vw,18px);
  line-height:1.44;
  font-weight:600;
}

.hero-actions,
.cta-row{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:42px;
}

.btn{
  position:relative;
  overflow:hidden;
  border:0;
  border-radius:16px;
  min-height:54px;
  padding:15px 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:900;
  line-height:1;
  letter-spacing:-.02em;
  transition:transform .22s ease,box-shadow .22s ease,filter .22s ease;
}

.btn::before{
  content:"";
  position:absolute;
  top:-40%;
  bottom:-40%;
  left:-80%;
  width:45%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.55),transparent);
  transform:skewX(-20deg);
  transition:left .55s ease;
}

.btn:hover{
  transform:translateY(-3px);
  filter:brightness(1.04);
}

.btn:hover::before{
  left:130%;
}

.btn-primary{
  background:var(--red);
  color:#fff;
  box-shadow:0 16px 34px rgba(208,0,31,.22);
}

.btn-secondary{
  background:rgba(255,253,244,.96);
  color:var(--blue);
  border:2px solid rgba(0,79,175,.12);
  box-shadow:0 16px 34px rgba(7,20,45,.08);
}

.btn-blue{
  background:var(--blue);
  color:#fff;
  box-shadow:0 16px 34px rgba(0,79,175,.22);
}

.btn-yellow{
  background:var(--yellow);
  color:var(--blue);
  box-shadow:0 16px 34px rgba(255,208,0,.24);
}

.card{
  background:rgba(255,253,244,.9);
  border:2px solid rgba(255,255,255,.82);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.section-head{
  text-align:center;
  margin-bottom:42px;
}

.section-head h2{
  margin:16px auto 14px;
  max-width:980px;
  font-size:clamp(34px,4vw,58px);
  line-height:1.05;
  color:var(--blue);
  font-weight:900;
}

.section-head p{
  max-width:820px;
  margin:0 auto;
  color:#073466;
  font-size:18px;
  line-height:1.5;
  font-weight:800;
}

.method-section{
  background:transparent;
  padding-top:96px;
  padding-bottom:142px;
}

.method-section .section-head h2{
  margin-bottom:24px;
}

.method-section .section-head p{
  max-width:980px;
  font-size:17px;
  line-height:1.46;
}

.one-line-title{
  max-width:1180px !important;
  white-space:nowrap;
  font-size:clamp(34px,4.2vw,56px) !important;
}

.values-grid,
.method-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:34px;
}

.value-card,
.method-card{
  padding:28px;
}

.value-card{
  background:rgba(255,255,255,.88);
}

.value-card:nth-child(2){
  background:rgba(255,253,244,.92);
}

.value-card:nth-child(3){
  background:rgba(239,249,255,.86);
}

.value-card span{
  display:block;
  font-size:30px;
  margin-bottom:14px;
}

.value-card h3,
.method-card h3{
  margin:0 0 10px;
  color:var(--red);
  font-size:23px;
  line-height:1.1;
}

.value-card p,
.method-card p{
  margin:0;
  color:#17345f;
  font-size:15px;
  line-height:1.52;
  font-weight:700;
}

.soft-section{
  background:transparent;
}

.products-section{
  padding-bottom:118px;
}

.offers-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}

.offer-card{
  padding:38px;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.offer-main{
  border-color:rgba(208,0,31,.12);
}

.offer-card h3{
  margin:16px 0 14px;
  color:var(--blue);
  font-size:clamp(30px,3vw,44px);
  line-height:1.04;
}

.offer-card p{
  margin:0 0 24px;
  color:#17345f;
  font-size:17px;
  line-height:1.5;
  font-weight:800;
}

.offer-card .btn{
  margin-top:auto;
}

.offer-card small{
  display:inline-flex;
  align-items:center;
  border:3px solid rgba(208,0,31,.18);
  border-radius:999px;
  padding:9px 18px;
  color:var(--red);
  background:#fff;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-.01em;
}

.page-hero{
  text-align:center;
  padding:78px 0 22px;
}

.classes-hero{
  padding:70px 0 22px;
}

.classes-hero h1{
  max-width:1040px;
  font-size:clamp(34px,4.25vw,61px);
  line-height:1.04;
}

.classes-hero .page-sub{
  max-width:950px;
  font-size:clamp(15px,1.15vw,18px);
  line-height:1.48;
  font-weight:600;
}

.page-hero .label-pill{
  margin-bottom:22px;
}

.page-hero h1{
  max-width:1120px;
}

.vsl-shell{
  width:min(1080px,calc(100% - 44px));
  margin:18px auto 36px;
  background:var(--paper);
  border:3px solid #fff;
  border-radius:26px;
  padding:12px;
  box-shadow:var(--shadow);
}

.media-bar{
  background:var(--blue);
  color:#fff;
  text-align:center;
  border-radius:16px 16px 0 0;
  padding:12px 16px;
  font-size:14px;
  font-weight:900;
}

.embed-wrap{
  position:relative;
  aspect-ratio:16/9;
  background:#fff;
  border-radius:0 0 16px 16px;
  overflow:hidden;
}

.embed-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.intro-proof-section{
  padding-top:54px;
}

.proof-wide{
  width:min(1160px,calc(100% - 44px));
}

.profile-proof{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:22px;
  align-items:stretch;
}

.profile-proof-clean{
  width:100%;
  margin-inline:auto;
  align-items:stretch;
}

.proof-card{
  padding:32px;
}

.proof-card h3{
  margin:0 0 12px;
  color:var(--blue);
  font-size:clamp(28px,3vw,38px);
  line-height:1.05;
}

.qualified-title{
  max-width:100%;
  font-size:clamp(25px,2vw,32px) !important;
  line-height:1.04 !important;
  white-space:normal;
}

.proof-card h3.proof-title-two-lines{
  max-width:100%;
  font-size:clamp(28px,1.75vw,32px);
  line-height:1.05;
  margin-bottom:22px;
  white-space:normal;
}

.proof-title-two-lines span{
  display:block;
  white-space:nowrap;
}

.proof-card p{
  margin:0 0 18px;
  color:#17345f;
  font-weight:600;
  line-height:1.55;
}

.tutor-row{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.tutor-photo{
  width:92px;
  height:92px;
  object-fit:cover;
  border-radius:18px;
  border:4px solid var(--yellow);
  box-shadow:var(--shadow-soft);
  flex:0 0 auto;
}

.tutor-row h3{
  margin-bottom:6px;
}

.mini-copy{
  margin:0 !important;
  color:#5d6472 !important;
  font-size:15px;
  font-weight:800 !important;
  line-height:1.35 !important;
}

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

.stat-box{
  background:#fff;
  border:2px solid rgba(0,79,175,.12);
  border-radius:18px;
  padding:18px;
}

.stat-box strong{
  display:block;
  color:var(--red);
  font-size:34px;
  line-height:1;
}

.stat-box span{
  color:#17345f;
  font-weight:900;
}

.preply-strip{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  width:max-content;
  max-width:100%;
  margin:20px auto 0;
  padding:13px 18px;
  background:#fff;
  color:var(--blue);
  border:1px solid rgba(7,20,45,.28);
  border-radius:16px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(7,20,45,.08);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.preply-strip:hover{
  transform:translateY(-2px);
  border-color:rgba(7,20,45,.55);
  box-shadow:0 16px 34px rgba(7,20,45,.12);
}

.preply-strip img{
  width:auto;
  height:46px;
  max-width:160px;
  object-fit:contain;
}

.preply-strip span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--blue);
}

.preply-strip span::after{
  content:"↗";
  font-size:16px;
  line-height:1;
}

.review-card{
  background:#fff;
  border-radius:18px;
  padding:20px;
  margin-top:12px;
  color:#17345f;
  font-weight:600;
  line-height:1.5;
}

.review-card strong{
  display:block;
  color:var(--blue);
  margin-bottom:7px;
}

.review-card span{
  display:block;
}

.check-list-card{
  display:grid;
  gap:9px;
  background:#fff;
  border-radius:20px;
  padding:22px;
  color:#17345f;
  font-weight:700;
  line-height:1.35;
}

.proof-actions{
  justify-content:flex-start;
  margin-top:22px;
}

.method-grid-soft .method-card{
  background:rgba(255,253,244,.92);
}

.method-number{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  font-weight:900;
  margin-bottom:18px;
  box-shadow:0 14px 30px rgba(0,79,175,.14);
}

.method-heading-compact{
  max-width:1160px !important;
  font-size:clamp(34px,4vw,58px) !important;
}

.classes-section-head p{
  font-weight:600;
  max-width:940px;
}

.poster-section{
  position:relative;
  background:
    radial-gradient(circle at 9px 9px,rgba(255,226,138,.21) 1.1px,transparent 1.25px) 0 0/22px 22px,
    var(--blue);
  color:#fff;
  padding:138px 0 138px;
}

.poster-section .section-head h2{
  color:var(--yellow);
}

.poster-section .section-head p{
  color:#fff;
  font-weight:600;
}

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

.poster-card{
  padding:32px;
  background:rgba(255,253,244,.98);
  border-radius:var(--radius);
  box-shadow:0 18px 44px rgba(7,20,45,.14);
}

.poster-card h3{
  margin:0 0 10px;
  color:var(--blue);
  font-size:26px;
}

.poster-card p{
  margin:0;
  color:#17345f;
  font-weight:600;
  line-height:1.5;
}

.section-cta{
  display:flex;
  justify-content:center;
  margin-top:34px;
}

.access-section{
  padding-top:138px;
  padding-bottom:138px;
}

.access-wide{
  width:min(1180px,calc(100% - 44px));
}

.access-head{
  text-align:center;
  margin-bottom:50px;
}

.access-head h2{
  max-width:1180px;
  margin-left:auto;
  margin-right:auto;
  font-size:clamp(34px,3.7vw,54px);
  white-space:nowrap;
}

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

.benefit-card{
  padding:28px;
}

.benefit-card h3{
  margin:0 0 10px;
  color:var(--blue);
  font-size:22px;
}

.benefit-card p{
  margin:0;
  color:#17345f;
  font-size:16px;
  line-height:1.5;
  font-weight:500;
}

.pricing-blue{
  position:relative;
  background:
    radial-gradient(circle at 9px 9px,rgba(255,226,138,.2) 1.1px,transparent 1.25px) 0 0/22px 22px,
    var(--blue);
  padding:138px 0 138px;
}

.pricing-blue .section-head h2{
  color:var(--yellow);
}

.pricing-blue .section-head p{
  color:#fff;
}

.pricing-head p{
  max-width:1120px;
  white-space:nowrap;
  font-weight:600;
}

.pricing-blue .label-pill{
  color:var(--red);
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.price-card{
  padding:34px;
  text-align:left;
  position:relative;
  background:rgba(255,255,255,.9);
}

.price-card.popular{
  transform:translateY(-10px);
  border-color:var(--yellow);
}

.badge{
  position:absolute;
  top:-14px;
  right:24px;
  background:linear-gradient(180deg,#d7b100,#a98b00);
  color:#fff;
  border-radius:0 0 14px 14px;
  padding:10px 12px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  text-align:center;
}

.price-card h3{
  margin:0 0 8px;
  color:var(--red);
  font-size:30px;
  line-height:1.05;
}

.price{
  display:flex;
  align-items:flex-end;
  gap:9px;
  margin:0 0 20px;
  color:var(--blue);
  font-size:42px;
  font-weight:900;
  line-height:.95;
}

.price small{
  display:inline-block;
  padding-bottom:5px;
  font-size:16px;
  color:#526070;
  font-weight:700;
  white-space:nowrap;
}

.price-card ul{
  list-style:none;
  margin:0;
  padding:18px;
  color:#17345f;
  font-size:17px;
  line-height:1.45;
  font-weight:500;
  background:rgba(255,255,255,.58);
  border:2px solid rgba(0,79,175,.08);
  border-radius:20px;
}

.price-card li{
  margin:10px 0;
}

.price-card li::before{
  content:"✅ ";
}

.commitment-section{
  background:transparent;
  padding-top:138px;
}

.commitment-wide{
  width:min(1120px,calc(100% - 44px));
}

.commitment-section .section-head p{
  font-weight:500;
}

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

.commit-card{
  padding:30px;
  text-align:center;
  background:rgba(223,241,255,.76);
  border-radius:28px;
  border:2px solid rgba(0,79,175,.1);
  box-shadow:var(--shadow-soft);
}

.commit-card h3{
  display:inline-block;
  margin:0 0 14px;
  padding:12px 22px;
  background:var(--blue);
  color:var(--yellow);
  border-radius:999px;
  font-size:25px;
  line-height:1;
  font-weight:900;
}

.commit-card.red h3{
  background:var(--red);
}

.commit-sub{
  color:var(--red);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:0 0 18px;
}

.commit-inner{
  background:rgba(255,255,255,.6);
  border:2px solid rgba(0,79,175,.08);
  border-radius:20px;
  padding:20px;
  color:var(--blue);
  font-size:19px;
  line-height:1.55;
  font-weight:500;
}

.commit-inner p{
  margin:0 0 8px;
}

.commit-inner span{
  color:#17345f;
}

.commit-inner strong{
  color:var(--blue);
  font-weight:900;
}

.commit-extra{
  margin-top:18px !important;
  padding-top:16px;
  border-top:1px solid rgba(0,79,175,.14);
  font-weight:800 !important;
}

.group-section{
  background:transparent;
  padding:112px 0 124px;
}

.group-wide{
  width:min(1160px,calc(100% - 44px));
}

.group-section .section-head p{
  font-weight:500;
  max-width:980px;
}

.group-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:stretch;
}

.group-card{
  background:rgba(255,253,244,.92);
  color:var(--ink);
  border-radius:28px;
  padding:22px 20px 20px;
  box-shadow:var(--shadow-soft);
  text-align:center;
  border:2px solid rgba(255,255,255,.85);
}

.group-card.featured{
  border-color:rgba(208,0,31,.18);
  transform:translateY(-8px);
  box-shadow:0 22px 46px rgba(7,20,45,.1);
}

.group-size{
  width:68px;
  height:68px;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  background:#fff;
  border:2px solid rgba(208,0,31,.14);
  border-radius:20px;
  color:var(--red);
  font-size:40px;
  line-height:1;
  font-weight:900;
  box-shadow:0 14px 28px rgba(7,20,45,.06);
}

.group-info{
  background:rgba(255,255,255,.58);
  border:2px solid rgba(0,79,175,.08);
  border-radius:20px;
  padding:18px 16px 16px;
}

.group-card p{
  margin:0 0 10px;
  color:#17345f;
  font-weight:500;
  line-height:1.42;
  font-size:19px;
}

.group-rate{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:8px;
  color:var(--blue) !important;
  font-size:35px !important;
  font-weight:800 !important;
  margin-bottom:16px !important;
  line-height:.95;
}

.group-rate small{
  display:inline-block;
  padding-bottom:5px;
  color:#526070;
  font-size:15px;
  font-weight:600;
  white-space:nowrap;
}

.group-total{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:6px;
  margin:16px 0 0 !important;
  padding-top:14px;
  border-top:1px solid rgba(0,79,175,.12);
  color:var(--red) !important;
  font-size:31px !important;
  font-weight:500 !important;
  line-height:.95;
}

.group-total small{
  display:inline-block;
  padding-bottom:4px;
  color:#526070;
  font-size:15px;
  font-weight:600;
  white-space:nowrap;
}

.flexible-section{
  display:none;
}

.flexible-card{
  padding:44px;
  text-align:center;
}

.flexible-options{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:26px;
}

.flex-option{
  background:#fff;
  border-radius:20px;
  padding:24px;
  color:#17345f;
  font-weight:900;
  border:2px solid rgba(0,79,175,.08);
}

.flex-option strong{
  display:block;
  color:#7bd98b;
  font-size:52px;
  line-height:1;
  margin-bottom:8px;
}

.flex-option span{
  display:block;
}

.course-hero{
  padding-top:82px;
  padding-bottom:28px;
}

.course-hero h1{
  color:var(--blue);
  max-width:920px;
  font-size:clamp(36px,4.4vw,63px);
  line-height:1.04;
}

.course-hero .page-sub{
  max-width:720px;
  font-size:clamp(15px,1.15vw,18px);
  line-height:1.48;
  font-weight:600;
}

.course-card{
  width:min(645px,calc(100% - 44px));
  margin:28px auto 92px;
  padding:36px;
  text-align:center;
  background:rgba(255,255,255,.74);
}

.course-card h2{
  margin:0 0 12px;
  color:var(--blue);
  font-size:clamp(30px,4vw,49px);
  line-height:1.04;
}

.course-card p{
  margin:0 auto 22px;
  max-width:520px;
  color:#17345f;
  font-size:16px;
  line-height:1.45;
  font-weight:600;
}

.error-main{
  min-height:calc(100vh - 168px);
  display:grid;
  place-items:center;
  padding:64px 22px 88px;
}

.error-card{
  width:min(720px,100%);
  text-align:center;
  padding:42px;
  background:rgba(255,255,255,.9);
}

.error-card h1{
  margin:18px auto 12px;
  color:var(--blue);
  font-size:clamp(38px,4.2vw,58px);
  line-height:1.04;
  font-weight:900;
}

.error-card p{
  max-width:560px;
  margin:0 auto;
  color:#073466;
  font-size:17px;
  line-height:1.45;
  font-weight:800;
}

.footer{
  position:relative;
  padding:104px 0 112px;
  background:transparent;
  color:#856b36;
  text-align:center;
}

.footer::before{
  display:none;
}

.footer>*{
  position:relative;
  z-index:1;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:22px;
  color:var(--blue);
  font-weight:500;
  font-size:16px;
}

.footer-links a:hover{
  color:var(--red);
}

.footer-links a:not(:last-child)::after{
  content:"|";
  margin-left:10px;
  color:rgba(0,79,175,.35);
  font-weight:400;
}

.footer p{
  font-size:13px;
  line-height:1.45;
  max-width:1180px;
  margin:14px auto;
  color:#7d6c4d;
  font-weight:500;
}

.footer .copyright{
  font-weight:700;
}

.whatsapp-widget{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:100;
  width:auto;
  height:auto;
}

.whatsapp-float{
  width:62px;
  height:62px;
  border:0;
  border-radius:50%;
  background:#25d366;
  display:grid;
  place-items:center;
  padding:13px;
  box-shadow:0 18px 40px rgba(7,20,45,.18);
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease;
}

.whatsapp-float:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 48px rgba(7,20,45,.24);
}

.whatsapp-float img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.whatsapp-preview{
  position:absolute;
  right:0;
  bottom:78px;
  width:min(330px,calc(100vw - 44px));
  background:#fff;
  border:1px solid rgba(7,20,45,.12);
  border-radius:22px;
  box-shadow:0 24px 70px rgba(7,20,45,.18);
  padding:18px;
  opacity:0;
  transform:translateY(12px) scale(.96);
  pointer-events:none;
  transition:opacity .2s ease,transform .2s ease;
}

.whatsapp-preview.open{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}

.whatsapp-close{
  position:absolute;
  top:10px;
  right:12px;
  width:28px;
  height:28px;
  border:0;
  border-radius:50%;
  background:rgba(7,20,45,.06);
  color:#17345f;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}

.whatsapp-preview-head{
  display:flex;
  align-items:center;
  gap:12px;
  padding-right:28px;
}

.whatsapp-preview-head img{
  width:46px;
  height:46px;
  object-fit:cover;
  border-radius:14px;
  border:3px solid var(--yellow);
  background:#fff;
  box-shadow:0 10px 22px rgba(7,20,45,.08);
  flex:0 0 auto;
}

.whatsapp-preview-head strong{
  display:block;
  color:#17345f;
  font-size:16px;
  font-weight:900;
}

.whatsapp-preview-head span{
  display:block;
  color:#5d6472;
  font-size:12px;
  font-weight:600;
  margin-top:2px;
}

.whatsapp-preview p{
  margin:16px 0;
  background:#eafff0;
  color:#17345f;
  border-radius:16px;
  padding:13px;
  font-size:14px;
  line-height:1.4;
  font-weight:600;
}

.whatsapp-preview a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  border-radius:14px;
  background:#25d366;
  color:#fff;
  font-size:15px;
  font-weight:900;
}

@media(max-width:1180px){
  .one-line-title,
  .pricing-head p,
  .access-head h2{
    white-space:normal;
  }

  .proof-wide,
  .access-wide,
  .commitment-wide,
  .group-wide{
    width:min(100% - 44px,1120px);
  }

  .classes-hero h1{
    font-size:clamp(34px,5vw,58px);
  }
}

@media(max-width:920px){
  .site-header{
    min-height:76px;
    padding-inline:16px;
  }

  .site-header::after{
    bottom:-42px;
    height:42px;
  }

  .brand-logo{
    height:38px;
    max-width:220px;
  }

  .nav{
    display:none;
  }

  .nav.open{
    display:flex;
    position:absolute;
    top:76px;
    left:16px;
    right:16px;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    background:var(--paper);
    border:1px solid rgba(0,79,175,.16);
    border-radius:18px;
    padding:18px;
    box-shadow:var(--shadow);
  }

  .menu-toggle{
    display:block;
  }

  .hero,
  .section-pad{
    min-height:auto;
    padding:64px 0;
  }

  .values-grid,
  .offers-grid,
  .method-grid,
  .profile-proof,
  .poster-grid,
  .benefits-grid,
  .pricing-grid,
  .commit-grid,
  .group-grid,
  .flexible-options{
    grid-template-columns:1fr;
  }

  .price-card.popular,
  .group-card.featured{
    transform:none;
  }

  .tutor-row{
    align-items:flex-start;
  }

  .proof-card h3.proof-title-two-lines{
    max-width:100%;
  }

  .access-head{
    text-align:center;
  }

  .access-head h2{
    margin-left:auto;
    margin-right:auto;
  }
}

@media(max-width:560px){
  .container,
  .container-narrow,
  .container-wide,
  .proof-wide,
  .access-wide,
  .commitment-wide,
  .group-wide{
    width:min(100% - 28px,1120px);
  }

  .announcement{
    font-size:12px;
  }

  .hero h1,
  .page-hero h1,
  .classes-hero h1{
    font-size:38px;
  }

  .course-hero h1{
    font-size:34px;
  }

  .classes-hero h1 br,
  .classes-hero .page-sub br,
  .method-heading-compact br,
  .classes-section-head p br,
  .poster-section h2 br,
  .group-section h2 br{
    display:none;
  }

  .hero-clean .hero-sub,
  .hero-sub,
  .page-sub{
    font-size:16px;
    padding-inline:0;
  }

  .method-section .section-head p br{
    display:none;
  }

  .proof-title-two-lines span{
    white-space:normal;
  }

  .hero-actions,
  .cta-row{
    flex-direction:column;
    align-items:center;
  }

  .btn{
    width:auto;
    min-width:210px;
    max-width:260px;
    padding-inline:24px;
  }

  .hero-actions .btn,
  .cta-row .btn{
    align-self:center;
  }

  .proof-actions{
    justify-content:center;
  }

  .tutor-row{
    flex-direction:column;
  }

  .preply-strip{
    width:100%;
    align-items:center;
    flex-direction:row;
  }

  .preply-strip img{
    height:40px;
  }

  .card,
  .course-card{
    border-radius:22px;
  }

  .value-card,
  .offer-card,
  .method-card,
  .benefit-card,
  .price-card,
  .flexible-card,
  .course-card,
  .proof-card,
  .poster-card,
  .commit-card,
  .group-card,
  .error-card{
    padding:24px;
  }

  .price{
    font-size:38px;
  }

  .price-card ul{
    font-size:16px;
  }

  .commit-inner{
    font-size:15px;
    line-height:1.5;
    padding:18px 14px;
  }

  .commit-inner p:not(.commit-extra){
    white-space:nowrap;
  }

.group-card{
  padding:22px 18px;
}

.group-size{
  width:58px;
  height:58px;
  border-radius:17px;
  font-size:34px;
  margin-bottom:14px;
}

.group-info{
  padding:16px 12px 14px;
}

  .group-card p{
    font-size:16px;
    line-height:1.36;
    margin-bottom:8px;
  }

  .group-rate{
    font-size:27px !important;
    margin-bottom:13px !important;
  }

  .group-rate small{
    font-size:13px;
    padding-bottom:4px;
  }

  .group-total{
    font-size:25px !important;
    margin-top:14px !important;
  }

  .group-total small{
    font-size:13px;
    padding-bottom:3px;
  }

  .error-main{
    padding:44px 14px 72px;
  }

  .footer-links{
    font-size:15px;
  }

  .whatsapp-widget{
    right:16px;
    bottom:16px;
  }

  .whatsapp-float{
    width:58px;
    height:58px;
  }

  .whatsapp-preview{
    bottom:74px;
  }
}