:root {
  --ink: #17202a;
  --deep: #0b1724;
  --blue: #204a6a;
  --blue-soft: #e9f1f6;
  --gold: #c08b35;
  --gold-ink: #906827;
  --gold-soft: #f2dfbd;
  --green: #2f6f65;
  --clay: #9b5d3c;
  --paper: #f8f7f4;
  --white: #ffffff;
  --muted: #627284;
  --line: #d7dee5;
  --shadow: 0 22px 70px rgba(13, 27, 42, 0.14);
  --radius: 8px;
  --ease: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(192, 139, 53, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--deep);
  padding: 0.7rem 1rem;
  font-weight: 800;
  border-radius: var(--radius);
}

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

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

.section {
  position: relative;
  padding: 5.8rem 0;
}

.section--paper {
  background: var(--paper);
}

.section--deep {
  color: var(--white);
  background: var(--deep);
}

.hero .eyebrow,
.section--deep .eyebrow {
  color: var(--gold);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.4rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-ink);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.legal-page {
  max-width: 760px;
}

.legal-page .lede {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-body h3 {
  margin: 2.2rem 0 0.6rem;
  color: var(--blue);
  font-size: 1.15rem;
}

.legal-body h3:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--ink);
  line-height: 1.7;
}

.legal-body ul {
  margin: 0.6rem 0;
  padding-left: 1.2rem;
}

.legal-body li {
  margin-bottom: 0.5rem;
}

.legal-body a {
  color: var(--blue);
  font-weight: 700;
}

.title,
.hero-title,
.panel-title,
.card-title,
.price-value,
.brand,
.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
}

.title {
  margin: 0.5rem 0 0;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.section--deep .title {
  color: var(--white);
}

.lead {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section--deep .lead {
  color: rgba(255, 255, 255, 0.68);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.site-header.is-solid,
.site-header.menu-is-open {
  background: rgba(11, 23, 36, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.08;
  font-size: 1rem;
  font-weight: 700;
}

.brand span {
  color: var(--gold);
  font-style: italic;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color var(--ease);
}

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

.nav-list .nav-cta {
  color: var(--deep);
  background: var(--gold);
  padding: 0.58rem 0.9rem;
  border-radius: var(--radius);
}

.nav-list .nav-cta:hover {
  color: var(--deep);
  background: var(--gold-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle-lines {
  position: relative;
  width: 19px;
  height: 14px;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after,
.menu-toggle-lines span {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease), top var(--ease);
}

.menu-toggle-lines::before {
  top: 0;
}

.menu-toggle-lines span {
  top: 6px;
}

.menu-toggle-lines::after {
  top: 12px;
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span {
  opacity: 0;
}

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

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(192, 139, 53, 0.18), transparent 28%),
    linear-gradient(135deg, #07111c 0%, #102940 54%, #173f4d 100%);
  overflow: hidden;
  padding: 7rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 5.5rem 4vw 3rem auto;
  width: min(42vw, 520px);
  border: 1px solid rgba(242, 223, 189, 0.16);
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 30% / 100% 32px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 14% 0 / 72px 100%,
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  opacity: 0.82;
  transform: rotate(-1.5deg);
}

.hero::after {
  content: "♪";
  position: absolute;
  right: clamp(2rem, 12vw, 10rem);
  top: 31%;
  width: 8.5rem;
  height: 8.5rem;
  display: grid;
  place-items: center;
  color: rgba(242, 223, 189, 0.82);
  border: 1px solid rgba(242, 223, 189, 0.2);
  border-radius: 999px;
  background: rgba(11, 23, 36, 0.28);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  pointer-events: none;
}

.hero-inner::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -2rem;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-title {
  margin: 1rem 0 0;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title em {
  color: var(--gold);
}

.hero-copy {
  max-width: 620px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

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

.btn-primary {
  background: var(--gold);
  color: var(--deep);
}

.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.11);
}

.btn-outline {
  color: var(--blue);
  border-color: var(--line);
  background: transparent;
}

.btn-outline:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 2.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item {
  padding: 1rem;
  background: rgba(11, 23, 36, 0.45);
}

.proof-value {
  display: block;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.proof-label {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  background: var(--white);
  padding: 1.25rem;
}

.trust-item strong {
  display: block;
  color: var(--blue);
  font-size: 0.95rem;
}

.trust-item span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.92;
}

.portrait-panel {
  min-height: 470px;
}

.portrait-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.portrait-img.is-missing {
  display: none;
}

.portrait-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  align-content: center;
  gap: 0.65rem;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 36% / 100% 28px,
    linear-gradient(140deg, rgba(32, 74, 106, 0.82), rgba(11, 23, 36, 0.96));
}

.portrait-fallback.is-visible {
  display: grid;
}

.portrait-fallback span {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(242, 223, 189, 0.22);
  border-radius: 999px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 700;
}

.portrait-fallback strong {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
}

.portrait-fallback p {
  max-width: 300px;
  margin: 0;
  font-size: 0.9rem;
}

.portrait-fallback code {
  color: var(--gold-soft);
}

.visual-note {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem;
  color: var(--white);
  background: rgba(11, 23, 36, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.visual-note strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.content-flow > * + * {
  margin-top: 1rem;
}

.content-flow p {
  margin-bottom: 0;
  color: var(--muted);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.mini-item {
  padding: 1rem;
  background: var(--white);
}

.mini-label {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-value {
  display: block;
  margin-top: 0.2rem;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.method-grid,
.service-grid,
.contact-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.method-card,
.service-card,
.testimonial-card {
  background: var(--white);
  padding: 1.55rem;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  color: var(--deep);
  background: var(--gold-soft);
  border-radius: 999px;
  font-weight: 900;
}

.card-title {
  margin: 0;
  color: var(--blue);
  font-size: 1.2rem;
}

.card-copy {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.credential-card {
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.035);
}

.credential-card strong {
  display: block;
  color: var(--gold-soft);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.14rem;
}

.credential-card span {
  display: block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

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

.service-card {
  min-height: 230px;
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 900;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.18rem 0.5rem;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem;
  background: var(--white);
}

.price-card.featured {
  color: var(--white);
  background: var(--blue);
}

.price-kicker {
  min-height: 1.25rem;
  color: var(--gold-ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured .price-kicker {
  color: var(--gold-soft);
}

.price-name {
  margin: 0.65rem 0 1rem;
  color: var(--blue);
  font-weight: 850;
}

.featured .price-name {
  color: rgba(255, 255, 255, 0.78);
}

.price-value {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  color: var(--blue);
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
}

.price-value small {
  margin-top: 0.42rem;
  color: var(--gold-ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
}

.featured .price-value small {
  color: var(--gold-soft);
}

.featured .price-value {
  color: var(--white);
}

.price-note {
  min-height: 1.4rem;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.featured .price-note {
  color: rgba(255, 255, 255, 0.64);
}

.save {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.6rem;
  padding: 0.2rem 0.5rem;
  color: var(--green);
  background: rgba(47, 111, 101, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.featured .save {
  color: var(--deep);
  background: var(--gold-soft);
}

.price-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
}

.featured .price-list {
  color: rgba(255, 255, 255, 0.7);
}

.price-list li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: var(--gold);
  font-weight: 900;
}

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

.exam-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-soft), var(--white));
}

.exam-offer h3 {
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.exam-offer p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.format-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
}

.format-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.format-list li {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.format-list strong {
  display: block;
  color: var(--blue);
}

.format-list span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.music-board {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(32, 74, 106, 0.95), rgba(47, 111, 101, 0.86)),
    var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.music-board::before,
.music-board::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 18px 0 rgba(255, 255, 255, 0.18),
    0 36px 0 rgba(255, 255, 255, 0.14),
    0 54px 0 rgba(255, 255, 255, 0.1),
    0 72px 0 rgba(255, 255, 255, 0.08);
}

.music-board::before {
  top: 34%;
}

.music-board::after {
  top: 64%;
}

.note {
  position: absolute;
  width: 36px;
  height: 25px;
  border-radius: 50%;
  background: var(--gold-soft);
  transform: rotate(-14deg);
}

.note::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 2px;
  height: 74px;
  background: var(--gold-soft);
}

.note.one {
  left: 22%;
  top: 39%;
}

.note.two {
  left: 55%;
  top: 28%;
  opacity: 0.72;
}

.note.three {
  left: 68%;
  top: 67%;
  opacity: 0.48;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-grid {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 0.7rem;
  background: none;
  border: none;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.testimonial-grid::-webkit-scrollbar {
  height: 6px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 min(360px, 84vw);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonial-empty {
  flex: 1 1 100%;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  padding: 1.5rem 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.carousel-btn:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.quote {
  margin: 0;
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.avatar {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--clay);
  border-radius: 999px;
  font-weight: 900;
}

.person-name {
  display: block;
  color: var(--blue);
  font-weight: 850;
}

.person-role {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.faq-list {
  max-width: 780px;
  margin: 2.4rem auto 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  color: var(--blue);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--gold-ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--white);
  background: var(--gold-ink);
  border-color: var(--gold-ink);
}

.faq-item p {
  max-width: 690px;
  margin: 0;
  padding: 0 0 1.3rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.contact-card + .contact-card {
  margin-top: 1rem;
}

.contact-label {
  display: block;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  margin-top: 0.3rem;
  color: var(--white);
  font-weight: 800;
}

.contact-value:hover {
  color: var(--gold-soft);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.socials a {
  padding: 0.48rem 0.72rem;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.socials a:hover {
  color: var(--gold-soft);
  border-color: rgba(242, 223, 189, 0.45);
}

.form-panel {
  background: var(--white);
  color: var(--ink);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-title {
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}

.form-help {
  margin: 0.3rem 0 1.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

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

.field label {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.78rem 0.85rem;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 74, 106, 0.12);
}

.field-error {
  min-height: 1rem;
  color: #a3422b;
  font-size: 0.78rem;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.9rem 0 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 750;
}

.privacy-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
}

.footer-brand span {
  color: var(--gold);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deep);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-soft);
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-list {
    display: none;
  }

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

  .mobile-panel {
    position: absolute;
    inset: 100% 0 auto;
    display: block;
    background: rgba(11, 23, 36, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  }

  .mobile-panel[hidden] {
    display: none;
  }

  .mobile-panel ul {
    display: grid;
    gap: 0.2rem;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 1rem 0 1.2rem;
    list-style: none;
  }

  .mobile-panel a {
    display: block;
    padding: 0.85rem 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
  }

  .hero {
    min-height: 88svh;
  }

  .trust-grid,
  .credential-grid,
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    flex-basis: min(320px, 80vw);
  }

  .about-grid,
  .format-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero {
    min-height: auto;
    padding: 7.2rem 0 4.2rem;
  }

  .hero::before {
    inset: 6rem 1rem auto;
    width: auto;
    height: 260px;
    opacity: 0.22;
  }

  .hero::after {
    display: none;
  }

  .hero-proof,
  .trust-grid,
  .method-grid,
  .service-grid,
  .pricing-grid,
  .credential-grid,
  .mini-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-panel {
    padding: 1.3rem;
  }

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

  .exam-offer {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.45rem;
    background: rgba(11, 23, 36, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-cta a:first-child {
    color: var(--deep);
    background: var(--gold);
  }

  .mobile-cta a:last-child {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  body {
    padding-bottom: 4.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
