@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/fonts/newsreader-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/fonts/newsreader-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #173f3a;
  --ink-deep: #0f2f2b;
  --ink-soft: #42615d;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --mint: #dbe8de;
  --mint-bright: #b8d8c6;
  --coral: #ed785e;
  --coral-dark: #d85f47;
  --line: rgba(23, 63, 58, 0.14);
  --shadow: 0 24px 60px rgba(20, 55, 50, 0.12);
  --radius: 28px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-deep);
  background:
    radial-gradient(circle at 8% 5%, rgba(184, 216, 198, 0.33), transparent 27rem),
    var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: white;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: min(1400px, calc(100% - 36px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 10px 30px rgba(15, 47, 43, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.15;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.text-link {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--coral-dark);
}

.controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.select-control select,
.language-button {
  min-width: 66px;
  min-height: 42px;
  padding: 0 30px 0 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-deep);
  background: var(--paper);
  font: 600 12px var(--sans);
  cursor: pointer;
}

.language-control {
  position: relative;
  min-width: 96px;
}

.language-button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 9px;
  padding-right: 12px;
}

.language-flag {
  width: 18px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 47, 43, 0.16);
}

.select-chevron {
  width: 7px;
  height: 7px;
  margin-left: auto;
  transform: translateY(-2px) rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transition: transform 160ms ease;
}

.language-button[aria-expanded="true"] .select-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 7px);
  right: 0;
  width: 100%;
  min-width: 104px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 16px 36px rgba(15, 47, 43, 0.16);
}

.language-menu[hidden] {
  display: none;
}

.language-option {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 0;
  border-radius: 8px;
  color: var(--ink-deep);
  background: transparent;
  font: 600 12px var(--sans);
  cursor: pointer;
}

.language-option:hover,
.language-option:focus-visible,
.language-option[aria-selected="true"] {
  outline: none;
  background: var(--mint);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

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

.button:focus-visible,
.select-control select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(237, 120, 94, 0.38);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  color: white;
  background: var(--ink);
  font-size: 12px;
}

.button-primary {
  color: white;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(216, 95, 71, 0.22);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.button-light {
  color: var(--ink-deep);
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(48px, 8vw, 120px);
  width: min(1240px, calc(100% - 44px));
  min-height: 750px;
  align-items: center;
  margin: 0 auto;
  padding: 104px 0 80px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--mint-bright);
}

.native-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -4px 0 20px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 63, 58, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.native-badge > span {
  color: var(--coral-dark);
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 6.2vw, 88px);
}

h2 {
  font-size: clamp(42px, 5vw, 66px);
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
}

.free-badge {
  display: flex;
  max-width: 570px;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(23, 63, 58, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.free-badge-icon {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint-bright);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.free-badge strong,
.free-badge small {
  display: block;
}

.free-badge strong {
  font-size: 15px;
}

.free-badge small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.reassurance {
  margin: 13px 0 0 7px;
  color: var(--ink-soft);
  font-size: 12px;
}

.hero-portrait {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
}

.portrait-frame {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(23, 63, 58, 0.12);
  border-radius: 220px 220px 28px 28px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow);
}

.portrait-placeholder {
  display: flex;
  min-height: 590px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 205px 205px 18px 18px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.85), transparent 12%),
    linear-gradient(155deg, #dceade 0%, #aec9bb 100%);
}

.portrait-initials {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 130px);
  line-height: 1;
  opacity: 0.18;
}

.portrait-note {
  margin-top: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-card {
  position: absolute;
  right: -38px;
  bottom: 62px;
  display: flex;
  width: 170px;
  min-height: 130px;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  border-radius: 20px;
  color: white;
  background: var(--ink);
  box-shadow: 0 20px 45px rgba(15, 47, 43, 0.24);
}

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

.experience-card strong {
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.1;
}

.experience-card span {
  margin-top: 7px;
  color: var(--mint);
  font-size: 12px;
  line-height: 1.4;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 0 32px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.trust-strip div:last-child {
  border: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 12px;
}

.section {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.section-heading.compact {
  max-width: 670px;
}

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

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.62);
}

.feature-card-main {
  color: white;
  background: var(--ink);
}

.feature-number {
  display: block;
  margin-bottom: 48px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 31px;
}

.feature-card p {
  max-width: 510px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.feature-card-main p {
  color: var(--mint);
}

.specializations {
  padding-top: 30px;
}

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

.specialization-grid article {
  padding: 34px;
  border-top: 1px solid var(--line);
}

.specialization-grid p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.experience {
  width: 100%;
  padding: 90px 22px;
  background: var(--ink-deep);
}

.qualification-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
  width: min(1196px, 100%);
  margin: 0 auto;
  color: white;
}

.degree-list {
  display: grid;
  gap: 18px;
}

.degree-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.degree-list article > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-deep);
  background: var(--mint-bright);
  font-family: var(--serif);
  font-size: 18px;
}

.degree-list p {
  margin: 7px 0 0;
  color: var(--mint);
  font-size: 13px;
}

.pricing-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
}

.pricing-heading > p:last-child {
  margin: 0;
  font-size: 16px;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: -18px 0 22px;
  padding: 15px 20px;
  border-radius: 16px;
  color: var(--ink-deep);
  background: var(--mint-bright);
  font-size: 14px;
}

.promo-banner strong {
  font-family: var(--serif);
  font-size: 21px;
}

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

.price-card {
  display: flex;
  min-height: 485px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.price-card.recommended {
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.price-card h3 {
  font-family: var(--serif);
  font-size: 29px;
}

.recommended-label {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink-deep);
  background: var(--mint-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-main {
  margin-top: 48px;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1;
}

.price-before {
  min-height: 26px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: line-through;
}

.recommended .price-before,
.recommended .price-meta,
.recommended .price-list {
  color: var(--mint);
}

.price-meta {
  margin: 5px 0 26px;
  color: var(--ink-soft);
  font-size: 14px;
}

.price-list {
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  list-style: none;
}

.price-list li::before {
  margin-right: 9px;
  color: var(--coral);
  content: "✓";
  font-weight: 700;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.exchange-note,
.promo-expired {
  margin: 18px 4px 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.contact {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 80px;
  align-items: center;
  width: min(1320px, calc(100% - 28px));
  margin-bottom: 28px;
  padding: 78px;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 216, 198, 0.16), transparent 20rem),
    var(--ink-deep);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--mint);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.light-link {
  color: white;
  font-size: 13px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 4px;
}

.contact-card {
  padding: 38px;
  border-radius: 24px;
  color: var(--ink-deep);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-card-kicker {
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin: 22px 0 7px;
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
}

.contact-card p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-card .button {
  width: 100%;
}

footer {
  display: flex;
  width: min(1240px, calc(100% - 44px));
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  padding: 36px 0 48px;
  color: var(--ink-soft);
  font-size: 12px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.8fr;
    gap: 45px;
  }

  .portrait-placeholder {
    min-height: 510px;
  }

  .experience-card {
    right: -12px;
  }

  .contact {
    padding: 58px 48px;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 16px;
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand small,
  .button-small {
    display: none;
  }

  .controls {
    gap: 4px;
  }

  .select-control select {
    min-width: 60px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 0 70px;
  }

  .hero-portrait {
    width: min(100%, 440px);
    justify-self: center;
  }

  .portrait-placeholder {
    min-height: 490px;
  }

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

  .trust-strip div {
    padding: 24px 14px;
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 90px 0;
  }

  .feature-grid,
  .specialization-grid,
  .qualification-panel,
  .pricing-heading,
  .pricing-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .specialization-grid article {
    padding: 30px 0;
  }

  .qualification-panel {
    gap: 48px;
  }

  .pricing-heading {
    gap: 25px;
  }

  .price-card {
    min-height: 440px;
  }

  .contact {
    gap: 48px;
    padding: 52px 28px;
  }

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

@media (max-width: 500px) {
  .site-header .brand strong {
    max-width: 105px;
    font-size: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .hero,
  .trust-strip,
  .section,
  footer {
    width: min(100% - 28px, 1240px);
  }

  h1 {
    font-size: clamp(44px, 14vw, 60px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .portrait-placeholder {
    min-height: 430px;
  }

  .experience-card {
    right: -4px;
    bottom: 28px;
    width: 146px;
    min-height: 110px;
    padding: 18px;
  }

  .feature-card,
  .price-card {
    padding: 28px;
  }

  .promo-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .contact {
    width: calc(100% - 16px);
  }

  .contact-card {
    padding: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
