:root {
  --navy: #2f7198;
  --navy-deep: #1d557d;
  --navy-soft: #58a3c4;
  --gold: #dea83a;
  --gold-deep: #a87418;
  --gold-soft: #ffe6a8;
  --cream: #fff3db;
  --warm: #fffaf0;
  --paper: #ffffff;
  --blue-mist: #e9f8fd;
  --sky: #d9f1f8;
  --sun: #fff1bd;
  --ink: #172231;
  --muted: #546c7c;
  --line: #e7cf9e;
  --line-blue: #bddfeb;
  --shadow-soft: 0 14px 36px rgba(29, 85, 125, 0.1);
  --shadow-strong: 0 24px 60px rgba(29, 85, 125, 0.16);
  --radius: 8px;
  --container: 1120px;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf7 0, #fff8e8 360px, #f3fbfe 720px, #fff8eb 100%),
    var(--warm);
  font-family: var(--font-body);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
}

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: 3rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.23rem;
  font-weight: 800;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

strong {
  color: var(--navy);
}

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

.narrow {
  max-width: 850px;
}

.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;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(231, 220, 200, 0.92);
  box-shadow: 0 8px 24px rgba(23, 63, 95, 0.06);
  backdrop-filter: blur(16px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #7fb1c9, var(--gold), #7fb1c9);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 66px;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: var(--navy);
  background:
    linear-gradient(135deg, #fff8e6, var(--gold-soft));
  border: 1px solid rgba(198, 154, 63, 0.46);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 850;
}

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

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  max-width: 210px;
  color: var(--navy-deep);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  align-items: center;
}

.site-nav a,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 9px;
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a {
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: rgba(198, 154, 63, 0.22);
  background: #fbf3e0;
}

.header-cta {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(36, 87, 122, 0.16);
}

.header-cta:hover {
  background: var(--navy-soft);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: auto;
  padding: 72px 0 78px;
  overflow: hidden;
}

.hero-home {
  background:
    linear-gradient(120deg, rgba(233, 248, 253, 0.95) 0%, rgba(255, 250, 240, 0.96) 42%, rgba(255, 241, 189, 0.72) 100%);
  border-bottom: 1px solid rgba(222, 168, 58, 0.28);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  z-index: -1;
  background: linear-gradient(90deg, var(--navy-soft), var(--gold), #f2c96c);
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(47, 113, 152, 0.08), rgba(222, 168, 58, 0.2), rgba(88, 163, 196, 0.1));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 46px;
  align-items: center;
}

.hero-content {
  padding: 0;
}

.hero-home .hero-content h1 {
  color: var(--navy-deep);
}

.hero-content h1 {
  max-width: 730px;
  font-size: 2.72rem;
}

.hero-content p {
  max-width: 640px;
  font-size: 1.03rem;
}

.hero-home .hero-content p {
  color: #365b70;
}

.hero-home .eyebrow {
  display: inline-flex;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(222, 168, 58, 0.36);
  border-radius: var(--radius);
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(222, 168, 58, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-strong);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10px 10px auto;
  height: 5px;
  z-index: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(90deg, var(--gold), var(--navy-soft));
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 28px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  font-weight: 750;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(36, 87, 122, 0.18);
}

.button-primary:hover {
  background: var(--navy-soft);
}

.button-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-content .button-primary,
.button-gold {
  color: #173f5f;
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(198, 154, 63, 0.34);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.11);
}

.hero-home .button-secondary {
  color: var(--navy-deep);
  border-color: rgba(47, 113, 152, 0.26);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 26px rgba(47, 113, 152, 0.1);
}

.hero-home .button-secondary:hover {
  background: #ffffff;
}

.section {
  position: relative;
  padding: 76px 0;
}

.section-lifted {
  background:
    linear-gradient(180deg, #fffdf7 0, #ffffff 48%, #eef8fc 100%);
}

.section-soft {
  background:
    linear-gradient(135deg, #fff1d2 0%, #f4fbfe 100%);
}

.section-pattern {
  background-color: var(--cream);
  background-image:
    linear-gradient(135deg, rgba(47, 113, 152, 0.05) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 243, 219, 0.86));
}

.section-navy {
  color: #ffffff;
  background:
    linear-gradient(135deg, #1d557d, var(--navy) 52%, #65abc7);
}

.section-diagonal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.08) 46% 47%, transparent 47%),
    linear-gradient(90deg, rgba(198, 154, 63, 0.16), transparent 42%);
}

.section-navy h2,
.section-navy h3,
.section-navy p,
.section-navy li,
.section-navy strong {
  color: #ffffff;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading-row {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: end;
  max-width: none;
}

.section-heading-row > div {
  max-width: 760px;
}

.home-intro .split-section {
  align-items: center;
}

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

.home-points article {
  padding: 24px;
  border: 1px solid rgba(47, 113, 152, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff 0%, #f0fbff 100%);
  box-shadow: 0 16px 34px rgba(29, 85, 125, 0.1);
}

.home-points h3 {
  margin-bottom: 8px;
  color: var(--navy-deep);
}

.home-points p {
  margin-bottom: 0;
}

.preview-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.preview-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(222, 168, 58, 0.34);
  border-radius: 999px;
  color: var(--navy-deep);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 241, 189, 0.66));
  box-shadow: 0 10px 22px rgba(47, 113, 152, 0.08);
  font-weight: 800;
}

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

.feature-card {
  padding: 34px;
  border: 1px solid rgba(222, 168, 58, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff 0%, #fff1c7 100%);
  box-shadow: 0 18px 44px rgba(29, 85, 125, 0.12);
}

.feature-card-muted {
  background:
    linear-gradient(135deg, #ffffff 0%, var(--blue-mist) 100%);
  border-color: rgba(47, 113, 152, 0.22);
}

.feature-card h2 {
  font-size: 1.72rem;
}

.button-secondary-light {
  color: var(--navy-deep);
  border-color: rgba(36, 87, 122, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary-light:hover {
  background: #ffffff;
}

.course-grid,
.pricing-grid,
.content-grid,
.three-cards,
.comparison-grid,
.two-column {
  display: grid;
  gap: 22px;
}

.course-grid {
  grid-template-columns: repeat(4, 1fr);
}

.two-column,
.content-grid,
.pricing-grid,
.comparison-grid {
  grid-template-columns: repeat(2, 1fr);
}

.three-cards {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.price-card,
.pricing-card,
.content-block,
.method-item,
.comparison-card,
.info-panel,
.hero-side-card,
.contact-note,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.card,
.price-card,
.pricing-card,
.content-block,
.comparison-card,
.info-panel {
  position: relative;
  overflow: hidden;
}

.card::before,
.content-block::before,
.pricing-card::before,
.comparison-card::before,
.info-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--navy-soft), rgba(222, 168, 58, 0.12));
}

.card {
  padding: 26px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border: 1px solid rgba(222, 168, 58, 0.42);
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(145deg, #fff5d4, #e9f8fd);
  box-shadow: 0 12px 22px rgba(29, 85, 125, 0.09);
}

.card-icon svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon-letter {
  font-family: var(--font-heading);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1;
}

.course-card {
  min-height: 250px;
}

.course-card h3::after,
.format-grid h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 12px;
  background: var(--gold);
  border-radius: 99px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 46px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  position: relative;
  padding: 21px 24px 21px 28px;
  border: 1px solid rgba(231, 220, 200, 0.86);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(16, 38, 64, 0.06);
}

.feature-list article p:last-child,
.card p:last-child,
.content-block p:last-child,
.comparison-card p:last-child,
.pricing-card p:last-child,
.highlight-panel p:last-child {
  margin-bottom: 0;
}

.format-grid .card {
  min-height: 190px;
  background:
    linear-gradient(180deg, #ffffff, #fffaf0);
}

.highlight-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(240, 223, 184, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.check-list {
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #ffffff;
}

.section-navy .check-list li::before {
  background: var(--gold);
  border-color: rgba(255, 255, 255, 0.66);
}

.plain-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--muted);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.pricing-card .plain-list {
  display: grid;
  gap: 10px;
}

.pricing-card .plain-list li {
  padding: 11px 12px 11px 34px;
  margin-bottom: 0;
  border: 1px solid rgba(210, 162, 71, 0.24);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.78);
}

.pricing-card .plain-list li::before {
  left: 14px;
  top: 1.22em;
}

.accordion-list {
  display: grid;
  gap: 14px;
  max-width: 940px;
}

.accordion-item {
  border: 1px solid rgba(222, 168, 58, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #fffbf1 100%);
  box-shadow: 0 12px 30px rgba(29, 85, 125, 0.08);
  overflow: hidden;
}

.accordion-item summary {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  color: var(--navy-deep);
  font-size: 1.12rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--gold-deep);
  font-size: 1.25rem;
}

.accordion-item[open] summary::after {
  content: "-";
}

.accordion-content {
  padding: 0 24px 24px 82px;
}

.accordion-content p {
  max-width: 760px;
}

.accordion-item .step-badge {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.course-accordion-list {
  max-width: 980px;
}

.course-accordion-item summary {
  padding: 18px 22px;
}

.course-accordion-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(222, 168, 58, 0.42);
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(145deg, #fff1bd, #e9f8fd);
  box-shadow: 0 10px 20px rgba(29, 85, 125, 0.09);
}

.course-accordion-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-accordion-letter {
  font-family: var(--font-heading);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.price-card {
  padding: 30px;
}

.price-card:first-child {
  background:
    linear-gradient(135deg, #fff8e7, #ffffff);
  border-color: rgba(198, 154, 63, 0.32);
}

.price-card-light {
  background:
    linear-gradient(135deg, #ffffff, var(--blue-mist));
}

.price-volume {
  color: var(--navy);
  font-weight: 850;
}

.price {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1.82rem;
  font-weight: 850;
  line-height: 1.12;
}

.price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 1rem;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cta-band {
  display: flex;
  gap: 34px;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(222, 168, 58, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 189, 0.64) 52%, rgba(233, 248, 253, 0.88));
  box-shadow: 0 18px 44px rgba(29, 85, 125, 0.12);
}

.cta-band > div {
  max-width: 780px;
}

.page-hero {
  padding: 72px 0 56px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(233, 248, 253, 0.96), rgba(255, 250, 240, 0.96) 48%, rgba(255, 241, 189, 0.55)),
    linear-gradient(90deg, rgba(222, 168, 58, 0.18), transparent 44%);
  border-bottom: 1px solid rgba(222, 168, 58, 0.28);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: end;
}

.page-hero h1 {
  max-width: 840px;
  color: var(--navy);
  font-size: 2.58rem;
}

.page-hero p {
  max-width: 780px;
  font-size: 1.04rem;
}

.hero-side-card {
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, #fff1c7);
  border-color: rgba(222, 168, 58, 0.36);
}

.side-card-label,
.pricing-label,
.comparison-tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-weight: 850;
}

.content-block {
  padding: 30px;
}

.course-detail {
  min-height: 330px;
}

.content-block h2 {
  font-size: 1.42rem;
}

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

.method-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-color: var(--line-blue);
}

.method-item span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(222, 168, 58, 0.42);
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(145deg, #fff1bd, #e9f8fd);
  font-size: 1rem;
  font-weight: 850;
}

.method-item h2,
.rich-content h2,
.pricing-card h2,
.comparison-card h3,
.info-panel h3 {
  font-size: 1.42rem;
}

.article-layout {
  max-width: 920px;
}

.rich-content {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.rich-content h2 {
  margin-top: 42px;
}

.rich-content h2:first-child {
  margin-top: 0;
}

.info-panel {
  padding: 30px;
  background:
    linear-gradient(135deg, #ffffff, #fff1c7);
}

.step-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--navy), var(--navy-soft));
  font-size: 0.9rem;
  font-weight: 850;
}

.accent-block {
  background:
    linear-gradient(135deg, #ffffff, #e9f8fd);
  border-color: var(--line-blue);
}

.comparison-card {
  padding: 30px;
}

.comparison-card-strong {
  border-color: rgba(222, 168, 58, 0.42);
  background:
    linear-gradient(135deg, #fff1c7, #ffffff);
  box-shadow: var(--shadow-strong);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  min-height: 395px;
  border-color: rgba(210, 162, 71, 0.34);
  background:
    linear-gradient(180deg, #ffffff 0%, #fffbf2 100%);
  box-shadow: 0 18px 44px rgba(29, 76, 112, 0.11);
}

.pricing-card.featured {
  color: #ffffff;
  background:
    linear-gradient(135deg, #1d4c70 0%, #2a6388 58%, #3b82a8 100%);
  border-color: rgba(29, 76, 112, 0.76);
  box-shadow: 0 24px 60px rgba(29, 76, 112, 0.2);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.pricing-card.featured h2,
.pricing-card.featured p,
.pricing-card.featured strong,
.pricing-card.featured .price-highlight span,
.pricing-card.featured .price-highlight em {
  color: #ffffff;
}

.pricing-card .pricing-label {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(210, 162, 71, 0.36);
  border-radius: var(--radius);
  color: var(--gold-deep);
  background: #fff4d4;
}

.pricing-card.featured .pricing-label {
  color: #fff7dc;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.price-highlight,
.pricing-info-box {
  padding: 20px;
  margin: 22px 0;
  border: 1px solid rgba(210, 162, 71, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #fff5d9, #ffffff);
}

.price-highlight {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
}

.price-highlight-light {
  border-color: rgba(210, 162, 71, 0.38);
  background:
    linear-gradient(135deg, #fff1c7, #ffffff);
}

.price-highlight span,
.price-highlight em,
.pricing-info-box span,
.pricing-info-box em {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.price-highlight strong,
.pricing-info-box strong {
  display: block;
  margin: 4px 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.18;
}

.price-highlight strong {
  font-size: 2.15rem;
}

.price-highlight .price-line {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: baseline;
  font-size: clamp(1.05rem, 4.4vw, 1.46rem);
}

.price-highlight .price-line span {
  color: inherit;
  white-space: nowrap;
}

.price-highlight .price-separator {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.pricing-info-box em {
  max-width: 440px;
  margin-top: 6px;
  font-size: 0.92rem;
}

.tariff-facts {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tariff-facts li {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
}

.tariff-facts strong {
  color: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 40px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 112px;
}

.contact-note {
  margin-top: 26px;
  padding: 24px;
  background:
    linear-gradient(135deg, #fff8e6, #ffffff);
}

.contact-note p {
  margin: 8px 0 0;
}

.contact-form {
  padding: 30px;
  box-shadow: var(--shadow-strong);
}

.form-heading {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-heading h2 {
  margin-bottom: 10px;
  font-size: 1.72rem;
}

fieldset {
  padding: 20px;
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #fffdf8);
}

legend,
.form-row label {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 850;
}

fieldset legend {
  padding: 0 8px;
}

fieldset label {
  display: block;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

fieldset label:hover {
  border-color: rgba(198, 154, 63, 0.48);
  background: #fff9e9;
}

fieldset label:last-child {
  margin-bottom: 0;
}

input[type="radio"],
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  accent-color: var(--gold);
}

input[type="text"],
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

input[type="text"]:focus,
textarea:focus {
  outline: 3px solid rgba(198, 154, 63, 0.22);
  border-color: var(--gold);
}

.form-row {
  margin-bottom: 24px;
}

.hidden {
  display: none;
}

.form-submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  font-size: 1rem;
}

.site-footer {
  padding: 32px 0;
  background: var(--navy-deep);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand p:first-child {
  color: #ffffff;
  font-weight: 850;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-social svg {
  display: block;
  width: 18px;
  height: 18px;
}

.footer-social path {
  fill: currentColor;
}

.footer-social rect,
.footer-social circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social a:hover {
  border-color: rgba(198, 154, 63, 0.6);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 20px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

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

@media (max-width: 900px) {
  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 62px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-visual {
    max-width: 680px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .section {
    padding: 58px 0;
  }

  .split-section,
  .pricing-preview,
  .content-grid,
  .pricing-grid,
  .contact-layout,
  .comparison-grid,
  .feature-row,
  .two-column,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-points {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 58px 0 46px;
  }

  .page-hero h1 {
    font-size: 2.08rem;
  }

  .hero-side-card {
    max-width: 560px;
  }

  .contact-intro {
    position: static;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-name {
    max-width: 190px;
    white-space: normal;
  }

  .brand-tagline {
    font-size: 0.68rem;
  }

  h1 {
    font-size: 1.86rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  p {
    font-size: 1rem;
  }

  .hero {
    padding: 42px 0 48px;
  }

  .hero-content h1 {
    font-size: 1.92rem;
  }

  .hero-visual {
    padding: 8px;
  }

  .hero-visual img {
    aspect-ratio: 1.12;
  }

  .page-hero h1 {
    font-size: 1.84rem;
  }

  .price-highlight .price-line {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .course-grid,
  .three-cards {
    grid-template-columns: 1fr;
  }

  .course-card,
  .course-detail,
  .pricing-card {
    min-height: auto;
  }

  .method-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card,
  .content-block,
  .rich-content,
  .pricing-card,
  .comparison-card,
  .info-panel,
  .feature-card,
  .highlight-panel,
  .price-card,
  .method-item,
  .contact-form,
  .cta-band {
    padding: 22px;
  }

  fieldset {
    padding: 16px;
  }

  .accordion-item summary {
    align-items: flex-start;
    padding: 18px;
  }

  .accordion-content {
    padding: 0 18px 20px;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .hero-highlights {
    gap: 8px;
  }

  .hero-highlights span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.9rem;
  }
}
