:root {
  --green-900: #124f2a;
  --green-700: #1f7a3f;
  --green-600: #2d914d;
  --green-100: #eaf6ee;
  --graphite: #202522;
  --muted: #66706a;
  --white: #ffffff;
  --off-white: #f7faf8;
  --border: #dfe8e2;
  --shadow: 0 20px 50px rgba(18, 79, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--graphite);
  color: var(--white);
  transform: translateY(-180%);
  transition: 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding: 6rem 0;
}

.section--soft {
  background: var(--off-white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--green-700);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 3px;
  border-radius: 999px;
  background: var(--green-700);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(31, 122, 63, 0.25);
}

.btn--primary:hover {
  background: var(--green-900);
}

.btn--secondary {
  background: var(--white);
  color: var(--graphite);
  border-color: var(--border);
}

.btn--secondary:hover {
  box-shadow: 0 12px 28px rgba(32, 37, 34, 0.09);
}

.topbar {
  background: var(--graphite);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: #b9e7c5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 232, 226, 0.8);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand__mark {
  width: 52px;
  height: 52px;
  padding: 5px;
  border-radius: 16px;
  background: var(--green-100);
}

.brand__text strong,
.brand__text span {
  display: block;
}

.brand__text strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.brand__text span {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav__menu a {
  font-weight: 750;
  font-size: 0.95rem;
  position: relative;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__menu a:hover::after,
.nav__menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--graphite);
  display: block;
  position: relative;
  transition: 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(94, 193, 120, 0.26), transparent 28%),
    linear-gradient(135deg, #f8fcf9 0%, #eef8f1 55%, #ffffff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(2px);
}

.hero::before {
  width: 320px;
  height: 320px;
  right: -140px;
  top: 80px;
  background: rgba(31, 122, 63, 0.12);
}

.hero::after {
  width: 220px;
  height: 220px;
  left: -100px;
  bottom: 20px;
  background: rgba(32, 37, 34, 0.05);
}

.hero__grid {
  min-height: 730px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 1.35rem;
}

.hero h1 span {
  color: var(--green-700);
}

.hero__lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__proof {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__proof span::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 900;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 560px;
  margin-inline: auto;
  padding: 3.75rem 3.25rem;
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(100%, 470px);
  border-radius: 36px;
  background: linear-gradient(145deg, #1b5f35, #103e23);
  color: var(--white);
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(18, 79, 42, 0.26);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  right: -130px;
  top: -140px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.hero-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
  font-size: 0.82rem;
}

.hero-card__panda {
  width: 86px;
  height: 86px;
  padding: 9px;
  border-radius: 26px;
  background: var(--white);
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}

.hero-card__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.hero-card__categories span {
  text-align: center;
  padding: 0.9rem 0.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 900;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 1rem 1.15rem;
  max-width: 220px;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.floating-card--one {
  left: 0;
  top: 1.25rem;
}

.floating-card--two {
  right: 0;
  bottom: 1.25rem;
}

.quick-strip {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.quick-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-strip__item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
}

.quick-strip__item + .quick-strip__item {
  border-left: 1px solid var(--border);
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.3rem;
}

.quick-strip__item strong,
.quick-strip__item span {
  display: block;
}

.quick-strip__item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.course-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(32, 37, 34, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: #b7d8c1;
  box-shadow: var(--shadow);
}

.course-card__visual {
  min-height: 190px;
  border-radius: 22px;
  margin-bottom: 1.35rem;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.course-card__visual::after {
  content: "";
  width: 170px;
  height: 170px;
  border-radius: 50%;
  position: absolute;
  right: -60px;
  bottom: -70px;
  background: rgba(255, 255, 255, 0.14);
}

.course-card:nth-child(1) .course-card__visual {
  background: linear-gradient(135deg, #1f7a3f, #114823);
}

.course-card:nth-child(2) .course-card__visual {
  background: linear-gradient(135deg, #27312c, #101412);
}

.course-card:nth-child(3) .course-card__visual {
  background: linear-gradient(135deg, #2f8e55, #174c2d);
}

.course-card__icon {
  font-size: 2.7rem;
  position: relative;
  z-index: 1;
}

.course-card__visual strong {
  font-size: 3.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.course-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.55rem;
}

.course-card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green-700);
  font-weight: 850;
}

.text-link:hover {
  gap: 0.7rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
}

.feature .icon-box {
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.94rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 1.2rem;
  text-align: center;
  counter-increment: steps;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 37px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: var(--border);
}

.step__number {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-700);
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(31, 122, 63, 0.24);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--muted);
  font-size: 0.88rem;
}

.online-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  border-radius: 34px;
  background: var(--graphite);
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.online-box::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(45, 145, 77, 0.28);
}

.online-box h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.online-box p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
}

.online-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.online-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.online-list li::before {
  content: "✓";
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-600);
  font-weight: 900;
}

.online-device {
  min-height: 310px;
  border-radius: 28px;
  background: linear-gradient(145deg, #f7fff9, #dcefe2);
  padding: 1.2rem;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.laptop {
  width: min(100%, 390px);
}

.laptop__screen {
  min-height: 220px;
  border: 10px solid #1c211e;
  border-radius: 18px 18px 10px 10px;
  background: var(--white);
  padding: 1rem;
  color: var(--graphite);
}

.laptop__bar {
  height: 12px;
  width: 90px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  background: var(--green-100);
}

.laptop__title {
  height: 26px;
  width: 75%;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--green-700);
}

.laptop__line {
  height: 11px;
  border-radius: 999px;
  margin-bottom: 0.7rem;
  background: #d9e6dd;
}

.laptop__line:nth-child(4) { width: 92%; }
.laptop__line:nth-child(5) { width: 72%; }
.laptop__line:nth-child(6) { width: 84%; }

.laptop__base {
  width: 108%;
  height: 18px;
  margin-left: -4%;
  border-radius: 0 0 18px 18px;
  background: #2e3531;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-card,
.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(32, 37, 34, 0.05);
}

.contact-card {
  padding: 2rem;
  background: linear-gradient(160deg, #f7fbf8 0%, #ecf7ef 100%);
}

.contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.contact-card > p {
  color: var(--muted);
  margin-bottom: 1.7rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-list a:hover {
  color: var(--green-700);
}

.map-frame {
  min-height: 260px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #e8eee9;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.form-card {
  padding: 2rem;
}

.form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.55rem;
}

.form-card > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 750;
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--off-white);
  padding: 0.9rem 1rem;
  color: var(--graphite);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(45, 145, 77, 0.12);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkbox input {
  margin-top: 0.25rem;
  accent-color: var(--green-700);
}

.form-note {
  min-height: 24px;
  margin-top: 0.8rem;
  color: var(--green-700);
  font-weight: 700;
}

.cta {
  padding: 0 0 6rem;
}

.cta__box {
  border-radius: 34px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow);
}

.cta__box h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.7rem;
}

.cta__box p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #161b18;
  color: var(--white);
  padding: 4rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.62);
  margin-top: 1rem;
  max-width: 360px;
}

.footer-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: #a9d8b5;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-bottom {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: grid;
  gap: 0.7rem;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 12px 28px rgba(18, 79, 42, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-3px);
  background: var(--green-900);
}

@media (max-width: 1050px) {
  .nav__actions .btn {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }

  .hero__content {
    padding-top: 1rem;
  }

  .hero__visual {
    min-height: 470px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.2rem;
  }

  .step::after {
    display: none;
  }

  .online-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(32, 37, 34, 0.08);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__menu a {
    display: block;
    padding: 0.85rem 0.25rem;
  }

  .nav__menu a::after {
    display: none;
  }

  .quick-strip__grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .quick-strip__item + .quick-strip__item {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .floating-card {
    display: none;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero-card {
    width: 100%;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4.5rem 0;
  }

  .nav {
    min-height: 72px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__text span {
    display: none;
  }

  .hero__grid {
    padding: 3.5rem 0 4rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 1.4rem;
    border-radius: 26px;
  }

  .hero-card__top {
    margin-bottom: 3rem;
  }

  .hero-card__panda {
    width: 70px;
    height: 70px;
  }

  .feature-grid,
  .steps,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .online-box {
    padding: 1.5rem;
    border-radius: 26px;
  }

  .contact-card,
  .form-card {
    padding: 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.course-card:nth-child(4) .course-card__visual {
  background: linear-gradient(135deg, #b07a24, #6f4611);
}

.course-card:nth-child(4) .course-card__visual strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: .02em;
}

@media (max-width: 1180px) and (min-width: 821px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1050px) and (min-width: 821px) {
  .hero__visual {
    max-width: 650px;
    min-height: 560px;
  }
}

/* Kapcsolatfelvételi űrlap visszajelzései és spamcsapda */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-note.is-success { color: #176b37; font-weight: 700; }
.form-note.is-error { color: #a32121; font-weight: 700; }
.form-card button[disabled] { cursor: wait; opacity: .72; }
