:root{
  --blue:#06295c;
  --blue-dark:#021b3f;
  --blue-soft:#0e3a77;
  --gold:#c8941f;
  --gold-dark:#a77712;
  --ink:#061936;
  --muted:#5f6b7a;
  --line:#e6ebf2;
  --bg:#f7f9fc;
  --white:#fff;
  --shadow:0 12px 30px rgba(6,25,54,.12);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
}

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

a{color:inherit}

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

.contact-strip{
  background:var(--blue-dark);
  color:#fff;
  font-size:13px;
}

.strip-inner{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.strip-social{margin-left:auto}

.main-nav{
  background:#fff;
  border-bottom:1px solid var(--line);
  box-shadow:0 6px 20px rgba(6,25,54,.06);
}

.nav-inner{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  width:280px;
  flex:0 0 auto;
  text-decoration:none;
}

.brand img{
  width:270px;
  height:82px;
  object-fit:contain;
  object-position:left center;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
}

.nav-links a{
  position:relative;
  text-decoration:none;
  padding:32px 0;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:25px;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .18s ease;
}

.nav-links a:hover::after,
.nav-links .active::after{transform:scaleX(1)}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

.language-switch{
  display:flex;
  align-items:center;
  gap:6px;
  border:1px solid var(--line);
  border-radius:6px;
  padding:4px;
  background:#fff;
}

.lang-button{
  min-width:34px;
  min-height:32px;
  border:0;
  border-radius:4px;
  background:transparent;
  color:var(--blue);
  font:inherit;
  font-size:12px;
  font-weight:950;
  cursor:pointer;
}

.lang-button.active{
  background:var(--blue);
  color:#fff;
}

.platform-link{
  color:var(--blue);
  font-size:13px;
  font-weight:900;
  text-decoration:none;
  border:1px solid var(--line);
  border-radius:6px;
  padding:12px 14px;
  background:#fff;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:12px 22px;
  border-radius:6px;
  border:1px solid transparent;
  font-weight:900;
  font-size:14px;
  text-decoration:none;
  line-height:1;
  transition:transform .16s ease,box-shadow .16s ease,background .16s ease;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(6,25,54,.16);
}

.btn-gold{
  background:linear-gradient(180deg,#d7a63a,var(--gold));
  color:#fff;
  border-color:var(--gold-dark);
}

.btn-blue{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue-dark);
}

.btn-outline{
  background:#fff;
  border-color:var(--blue);
  color:var(--blue);
}

.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(90deg,#fff 0%,#fff 43%,#f3f6fa 43%,#eef3f8 100%);
}

.hero-grid{
  min-height:430px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,1.05fr);
  align-items:center;
  gap:38px;
}

.hero-copy{
  padding:54px 0 48px;
  max-width:570px;
  position:relative;
  z-index:2;
}

.hero h1{
  margin:0;
  font-size:48px;
  line-height:1.08;
  letter-spacing:0;
  color:var(--blue-dark);
}

.hero h1 span{
  display:block;
  color:var(--gold);
}

.title-rule{
  width:48px;
  height:3px;
  background:var(--gold);
  margin:18px 0;
}

.hero p{
  margin:0;
  color:#415064;
  font-size:16px;
  line-height:1.72;
}

.hero-subcopy{
  margin-top:12px !important;
  font-weight:800;
  color:#27364b !important;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:26px;
}

.hero-badges{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
  margin-top:24px;
  color:#27364b;
  font-size:13px;
  font-weight:800;
}

.hero-badges span{
  position:relative;
  padding-left:18px;
}

.hero-badges span::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  position:absolute;
  left:0;
  top:.45em;
}

.hero-media{
  height:430px;
  align-self:stretch;
  position:relative;
  margin-right:calc((100vw - min(1120px, calc(100vw - 40px))) / -2);
}

.hero-media::before{
  content:"";
  position:absolute;
  inset:0 auto 0 -120px;
  width:240px;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.78) 52%,rgba(255,255,255,0) 100%);
  z-index:1;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.feature-band{
  background:var(--blue);
  color:#fff;
  border-radius:8px;
  margin-top:-22px;
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  box-shadow:var(--shadow);
  overflow:hidden;
}

.feature-band article{
  display:flex;
  align-items:center;
  gap:16px;
  padding:28px 24px;
  border-right:1px solid rgba(255,255,255,.18);
}

.feature-band article:last-child{border-right:0}

.icon-circle{
  width:56px;
  height:56px;
  flex:0 0 56px;
  border-radius:50%;
  background:#fff;
  color:var(--blue);
  display:grid;
  place-items:center;
  font-weight:950;
  font-size:13px;
}

.feature-band h2{
  margin:0 0 8px;
  font-size:15px;
  color:#fff;
}

.feature-band p{
  margin:0;
  color:rgba(255,255,255,.85);
  font-size:12px;
  line-height:1.55;
}

.section{
  padding:54px 0;
}

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

.section-heading span{
  display:block;
  margin-bottom:8px;
  color:var(--gold);
  text-transform:uppercase;
  font-weight:950;
  font-size:12px;
  letter-spacing:.06em;
}

.section-heading h2{
  margin:0;
  color:var(--blue-dark);
  font-size:32px;
  line-height:1.15;
}

.section-heading p{
  margin:10px 0 0;
  color:var(--muted);
}

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

.course-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(6,25,54,.1);
}

.course-card img{
  width:100%;
  height:150px;
  object-fit:cover;
}

.course-body{
  position:relative;
  padding:28px 22px 20px;
}

.course-icon{
  position:absolute;
  top:-24px;
  left:20px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  display:grid;
  place-items:center;
  border:4px solid #fff;
  font-weight:950;
  font-size:13px;
}

.course-card h3{
  min-height:52px;
  margin:0 0 10px;
  color:var(--blue-dark);
  font-size:19px;
  line-height:1.16;
}

.course-card p{
  min-height:72px;
  margin:0 0 14px;
  color:#526174;
  font-size:14px;
  line-height:1.55;
}

.course-card strong{
  display:block;
  color:var(--gold-dark);
  margin-bottom:14px;
  font-size:14px;
}

.course-card a,
.course-link{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  border:1px solid var(--blue);
  border-radius:5px;
  color:var(--blue);
  text-decoration:none;
  font-weight:900;
  font-size:13px;
}

.course-link,
.disabled-action{
  cursor:default;
  user-select:none;
}

.center-action{
  text-align:center;
  margin-top:18px;
}

.benefits-section{
  padding-bottom:28px;
}

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

.benefits-grid article{
  background:#fff;
  border:1px solid var(--line);
  border-top:4px solid var(--gold);
  border-radius:8px;
  padding:24px;
  box-shadow:0 12px 28px rgba(6,25,54,.08);
}

.benefits-grid span{
  display:inline-grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  font-weight:950;
  margin-bottom:14px;
}

.benefits-grid h2{
  margin:0 0 10px;
  color:var(--blue-dark);
  font-size:18px;
}

.benefits-grid p{
  margin:0;
  color:#526174;
  line-height:1.65;
  font-size:14px;
}

.cba-course-grid .course-card{
  min-height:100%;
}

.cba-course-grid .course-card img{
  height:170px;
}

.cba-course-grid .course-card h3{
  min-height:48px;
}

.cba-course-grid .course-card p{
  min-height:88px;
}

.accent-green .course-icon{background:#0b8f78}
.accent-purple .course-icon{background:#6d3fa0}
.accent-orange .course-icon{background:#e57b13}
.accent-pink .course-icon{background:#d62b73}

.plans-band{
  margin-top:12px;
  margin-bottom:44px;
  padding:28px;
  border-radius:8px;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(2,27,63,.98) 0%,rgba(2,27,63,.94) 56%,rgba(2,27,63,.5) 100%),
    url("assets/image_3.png") center right/cover;
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:28px;
  align-items:center;
  box-shadow:var(--shadow);
}

.plans-band span{
  display:block;
  color:var(--gold);
  font-weight:950;
  text-transform:uppercase;
  margin-bottom:6px;
}

.plans-band h2{
  margin:0 0 16px;
  font-size:24px;
  line-height:1.2;
}

.plans-band ul{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  padding:0;
  margin:0;
  list-style:none;
  color:rgba(255,255,255,.88);
  font-size:13px;
  font-weight:800;
}

.plans-price{
  border-left:1px solid rgba(255,255,255,.25);
  padding-left:28px;
}

.plans-price strong{
  display:block;
  color:#ffd15c;
  font-size:34px;
  line-height:1;
  margin-bottom:14px;
}

.plans-price small{
  display:block;
  margin-top:10px;
  color:rgba(255,255,255,.78);
}

.stats-band{
  background:var(--blue);
  color:#fff;
  padding:30px 0;
}

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

.stats-grid div{
  text-align:center;
  border-right:1px solid rgba(255,255,255,.2);
}

.stats-grid div:last-child{border-right:0}

.stats-grid strong{
  display:block;
  font-size:25px;
  line-height:1.2;
  padding:0 18px;
}

.stats-grid span{
  display:block;
  margin-top:5px;
  color:rgba(255,255,255,.82);
  font-size:13px;
}

.how-section{
  background:linear-gradient(180deg,#fff 0%,#f6f9fd 100%);
}

.how-flow{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:34px;
  text-align:center;
  margin-bottom:28px;
}

.how-flow article{
  position:relative;
}

.how-flow article:not(:last-child)::after{
  content:"";
  position:absolute;
  top:55px;
  right:-24px;
  width:22px;
  height:22px;
  border-top:3px solid var(--blue);
  border-right:3px solid var(--blue);
  transform:rotate(45deg);
  opacity:.8;
}

.how-flow span{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  margin:0 auto -16px;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  font-weight:950;
  position:relative;
  z-index:2;
}

.how-flow article:nth-child(2) span{background:#2a8b45}
.how-flow article:nth-child(3) span{background:#e59b08}
.how-flow article:nth-child(4) span{background:#68489b}

.how-icon{
  width:112px;
  height:112px;
  margin:0 auto 16px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#eef5ff;
  color:var(--blue);
  font-size:42px;
  font-weight:950;
  border:1px solid #dbe7f7;
}

.how-flow h3{
  margin:0 0 8px;
  color:var(--blue-dark);
  font-size:15px;
  text-transform:uppercase;
}

.how-flow p{
  margin:0;
  color:#526174;
  font-size:13px;
  line-height:1.55;
}

.how-support-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-bottom:18px;
}

.important-card,
.doubts-card,
.security-grid p{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:22px;
  box-shadow:0 10px 24px rgba(6,25,54,.07);
}

.important-card h3,
.doubts-card h3{
  margin:0 0 12px;
  color:var(--blue);
  text-transform:uppercase;
}

.important-card p{
  margin:8px 0;
  color:#526174;
  padding-left:22px;
  position:relative;
}

.important-card p::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--blue);
  font-weight:950;
}

.doubts-card{
  display:grid;
  grid-template-columns:1fr 190px;
  align-items:center;
  overflow:hidden;
}

.doubts-card.no-image{
  grid-template-columns:1fr;
  background:linear-gradient(135deg,#fff 0%,#f4f8fd 100%);
}

.doubts-card img{
  width:190px;
  height:130px;
  object-fit:cover;
  border-radius:8px;
}

.doubts-card p{
  color:#526174;
  line-height:1.6;
}

.security-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.security-grid p{
  margin:0;
  color:#526174;
  line-height:1.55;
}

.security-grid strong{
  color:var(--blue);
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:26px;
  text-align:center;
}

.steps-grid article{position:relative}

.steps-grid article:not(:last-child)::after{
  content:"";
  position:absolute;
  top:34px;
  right:-26px;
  width:26px;
  height:2px;
  background:#c7cfda;
}

.steps-grid span{
  width:70px;
  height:70px;
  margin:0 auto 14px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--blue);
  border:5px solid #eef3f8;
  font-size:24px;
  font-weight:950;
}

.steps-grid article:nth-child(even) span{background:var(--gold)}

.steps-grid h3{
  margin:0 0 6px;
  color:var(--blue-dark);
  font-size:16px;
}

.steps-grid p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.testimonials{
  background:var(--bg);
}

.about-section{
  background:#fff;
}

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

.about-grid article{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:26px;
  box-shadow:0 10px 24px rgba(6,25,54,.08);
}

.about-grid h3{
  margin:0 0 10px;
  color:var(--blue-dark);
  font-size:19px;
}

.about-grid p{
  margin:0;
  color:#526174;
  line-height:1.7;
}

.contact-section{
  background:linear-gradient(90deg,var(--blue) 0%,var(--blue-dark) 100%);
  color:#fff;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:36px;
}

.section-kicker{
  display:block;
  margin-bottom:8px;
  color:var(--gold);
  text-transform:uppercase;
  font-weight:950;
  font-size:12px;
  letter-spacing:.06em;
}

.contact-grid h2{
  margin:0 0 12px;
  font-size:32px;
  line-height:1.15;
}

.contact-grid p{
  margin:0;
  color:rgba(255,255,255,.84);
  line-height:1.65;
}

.contact-card{
  background:#fff;
  color:var(--ink);
  border-radius:8px;
  padding:26px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.contact-card p{
  color:#526174;
  margin:0 0 14px;
}

.contact-card p:last-child{margin-bottom:0}

.contact-card strong{
  display:block;
  color:var(--blue-dark);
  margin-bottom:3px;
}

.contact-info-card{
  margin-top:22px;
  box-shadow:none;
}

.contact-form-card{
  background:#fff;
  color:var(--ink);
  border-radius:8px;
  padding:26px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  display:grid;
  gap:14px;
}

.contact-form-card label{
  display:grid;
  gap:6px;
  font-weight:900;
  color:var(--blue-dark);
}

.contact-form-card input,
.contact-form-card textarea{
  width:100%;
  border:1px solid #cbd5e1;
  border-radius:6px;
  min-height:44px;
  padding:11px 12px;
  font:inherit;
}

.contact-form-card textarea{
  min-height:116px;
  resize:vertical;
}

.legal-page{
  background:var(--bg);
}

.legal-heading{
  max-width:860px;
}

.legal-heading h1{
  margin:0;
  color:var(--blue-dark);
  font-size:38px;
  line-height:1.12;
}

.legal-grid{
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  gap:26px;
  align-items:start;
}

.legal-index{
  position:sticky;
  top:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:18px;
  box-shadow:0 10px 24px rgba(6,25,54,.08);
}

.legal-index a{
  display:block;
  color:var(--blue);
  text-decoration:none;
  font-weight:900;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}

.legal-index a:last-child{border-bottom:0}

.legal-content{
  display:grid;
  gap:18px;
}

.legal-card{
  scroll-margin-top:22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:28px;
  box-shadow:0 10px 24px rgba(6,25,54,.08);
}

.legal-card h2{
  margin:0 0 14px;
  color:var(--blue-dark);
  font-size:23px;
}

.legal-card p{
  margin:0 0 12px;
  color:#526174;
  line-height:1.75;
}

.legal-card p:last-child{margin-bottom:0}

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

.testimonial-grid article{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:24px;
  box-shadow:0 10px 24px rgba(6,25,54,.08);
}

.student{
  display:flex;
  align-items:center;
  gap:14px;
}

.student span{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#eaf0f7;
  color:var(--blue);
  font-weight:950;
  overflow:hidden;
  padding:0;
}

.student span img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.student strong,
.student small{display:block}

.student small{color:var(--muted);font-size:12px;margin-top:2px}

.stars{
  color:var(--gold);
  letter-spacing:2px;
  margin:12px 0;
  font-size:14px;
}

.testimonial-grid p{
  margin:0;
  color:#526174;
  line-height:1.65;
  font-size:14px;
}

.final-cta{
  background:var(--blue);
  color:#fff;
  padding:36px 0;
}

.final-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.final-cta-inner>div{
  display:flex;
  align-items:center;
  gap:22px;
}

.large-icon{
  width:100px;
  height:100px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fff;
  overflow:hidden;
  padding:10px;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.large-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.final-cta h2{
  margin:0 0 6px;
  font-size:26px;
}

.final-cta p{
  margin:0;
  color:rgba(255,255,255,.84);
}

.footer{
  background:var(--blue-dark);
  color:#fff;
  padding:38px 0 18px;
}

.compact-footer{
  padding-top:26px;
}

.footer-note{
  text-align:center;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.14);
}

.footer-note p{
  margin:0;
  color:rgba(255,255,255,.86);
  line-height:1.6;
}

.compact-footer .copyright{
  display:grid;
  gap:10px;
}

.compact-footer .copyright p{
  margin:0;
}

.compact-footer .copyright nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.compact-footer .copyright a{
  color:var(--gold);
  font-weight:900;
  text-decoration:none;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr 1.1fr 1.1fr;
  gap:36px;
  padding-bottom:26px;
  border-bottom:1px solid rgba(255,255,255,.14);
}

.footer-logo{
  width:270px;
  height:122px;
  object-fit:contain;
  object-position:left center;
  background:#fff;
  border-radius:4px;
  padding:8px;
}

.footer h3{
  margin:0 0 14px;
  font-size:15px;
}

.footer p,
.footer a{
  display:block;
  margin:0 0 9px;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  line-height:1.55;
  font-size:14px;
}

.footer-social{
  margin-top:16px;
  color:#fff;
  word-spacing:12px;
  font-weight:900;
}

.copyright{
  text-align:center;
  padding-top:18px;
  color:rgba(255,255,255,.7);
  font-size:13px;
}

/* Compatibility styles for the existing inner pages. */
.topbar{
  background:var(--blue-dark);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.topbar-inner{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.topbar .brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  width:52px;
  height:52px;
  object-fit:contain;
}

.brand-name{
  color:#fff;
  font-weight:950;
  letter-spacing:.02em;
}

.topbar .nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.nav-link{
  color:rgba(255,255,255,.84);
  text-decoration:none;
  font-weight:800;
  padding:10px 12px;
  border-radius:6px;
}

.nav-link:hover,
.nav-link.active{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.lang{
  display:flex;
  gap:8px;
}

.lang-link{
  color:#fff;
  text-decoration:none;
  font-weight:900;
  border:1px solid rgba(255,255,255,.22);
  border-radius:6px;
  padding:8px 10px;
}

.lang-link.active{background:rgba(255,255,255,.14)}

.page{
  padding:42px 0 68px;
}

.h1{
  margin:0 0 16px;
  color:var(--blue-dark);
  font-size:42px;
  line-height:1.1;
}

.p{
  color:var(--muted);
  line-height:1.7;
}

.grid{
  display:grid;
  gap:20px;
}

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

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:24px;
  box-shadow:0 10px 24px rgba(6,25,54,.08);
}

.card form label{
  display:block;
  font-weight:800;
  margin-bottom:6px;
}

.card form input,
.card form textarea,
.card form select{
  width:100%;
  min-height:44px;
  border:1px solid #cbd5e1;
  border-radius:6px;
  padding:11px 12px;
  font:inherit;
}

.card form textarea{
  min-height:140px;
  resize:vertical;
}

.course-long-description{
  white-space:pre-line;
}

.section{margin-top:0}

@media (max-width:1080px){
  .nav-inner{
    flex-wrap:wrap;
    justify-content:center;
    padding:14px 0 18px;
  }

  .brand{width:100%;display:flex;justify-content:center}
  .brand img{object-position:center}
  .nav-links{order:3;width:100%;overflow-x:auto;padding-bottom:4px}

  .nav-actions{order:2}
}

@media (max-width:880px){
  .hero{background:#fff}

  .hero-grid{
    grid-template-columns:1fr;
    min-height:0;
    gap:0;
  }

  .hero-copy{max-width:none;padding:42px 0 28px}

  .hero h1{font-size:39px}

  .hero-media{
    height:290px;
    margin:0 -20px;
  }

  .hero-media::before{
    inset:-1px 0 auto 0;
    width:100%;
    height:90px;
    background:linear-gradient(180deg,#fff,rgba(255,255,255,0));
  }

  .feature-band,
  .benefits-grid,
  .course-grid,
  .stats-grid,
  .steps-grid,
  .how-flow,
  .how-support-grid,
  .security-grid,
  .testimonial-grid,
  .legal-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .steps-grid article::after{display:none}

  .legal-index{position:static}

  .plans-band{
    grid-template-columns:1fr;
  }

  .plans-band ul{
    grid-template-columns:1fr 1fr;
  }

  .plans-price{
    border-left:0;
    border-top:1px solid rgba(255,255,255,.25);
    padding-left:0;
    padding-top:22px;
  }

  .how-flow article::after{display:none}
}

@media (max-width:640px){
  .container{width:min(100% - 26px,1120px)}

  .strip-inner{
    justify-content:center;
    flex-wrap:wrap;
    gap:8px 16px;
    padding:8px 0;
    text-align:center;
  }

  .strip-social{margin-left:0}

  .nav-links{
    justify-content:flex-start;
    gap:18px;
  }

  .nav-actions{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
  }

  .platform-link,
  .nav-actions .btn{
    flex:1 1 180px;
  }

  .language-switch{
    flex:0 0 auto;
  }

  .hero h1{font-size:34px}
  .hero-actions .btn{flex:1 1 150px}
  .hero-badges{gap:12px 18px}

  .feature-band,
  .benefits-grid,
  .course-grid,
  .stats-grid,
  .steps-grid,
  .how-flow,
  .how-support-grid,
  .security-grid,
  .testimonial-grid,
  .about-grid,
  .contact-grid,
  .legal-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .legal-heading h1{font-size:31px}

  .feature-band article,
  .stats-grid div{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.16);
  }

  .feature-band article:last-child,
  .stats-grid div:last-child{border-bottom:0}

  .section{padding:42px 0}
  .section-heading h2{font-size:27px}

  .course-card h3,
  .course-card p{min-height:0}

  .plans-band ul{grid-template-columns:1fr}

  .doubts-card{
    grid-template-columns:1fr;
  }

  .doubts-card img{
    width:100%;
    height:180px;
  }

  .final-cta-inner,
  .final-cta-inner>div{
    align-items:flex-start;
    flex-direction:column;
  }

  .final-cta-inner .btn{width:100%}
}
