/*
Theme Name: Diploma Clean
Theme URI: https://diploma.kz
Author: Diploma.kz
Description: Minimal clean WordPress theme for diploma.kz based on the approved static landing template.
Version: 1.0.16
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.1
Text Domain: diploma-clean
*/
:root {
  --bg: #050606;
  --panel: rgba(12, 12, 11, 0.7);
  --line: rgba(231, 189, 106, 0.22);
  --line-cold: rgba(255, 255, 255, 0.13);
  --text: #fffaf0;
  --muted: rgba(255, 255, 255, 0.72);
  --dim: rgba(255, 255, 255, 0.48);
  --gold: #e6bd6b;
  --gold-soft: #f8df92;
  --gold-deep: #a7752f;
  --font-ui: "Manrope", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-ui);
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.page-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(231, 189, 106, 0.12), transparent 32%),
    #050606;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 34px clamp(24px, 3vw, 62px) 36px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade,
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero__image {
  background-image: image-set(
    url("./assets/hero-graduation.avif") type("image/avif"),
    url("./assets/hero-graduation.webp") type("image/webp"),
    url("./assets/hero-graduation.png") type("image/png")
  );
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 0.18s ease-out;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.98) 0%, rgba(3, 4, 4, 0.9) 25%, rgba(4, 4, 3, 0.47) 52%, rgba(3, 3, 3, 0.18) 75%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.92) 100%);
}

.hero__glow {
  z-index: -1;
  background:
    radial-gradient(circle at 68% 30%, rgba(255, 209, 119, 0.2), transparent 19%),
    radial-gradient(circle at 33% 61%, rgba(231, 189, 106, 0.09), transparent 24%);
  pointer-events: none;
}

.header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 268px;
}

.brand__mark {
  color: var(--gold);
  width: 58px;
}

.brand__mark svg {
  width: 58px;
  height: 42px;
}

.brand__text {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 0.86;
}

.brand small {
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 48px);
}

.nav__list {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__list li {
  display: contents;
}

.nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

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

.header__contacts {
  display: flex;
  align-items: center;
  gap: 34px;
}

.phone {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  white-space: nowrap;
}

.phone svg {
  width: 21px;
  height: 21px;
  color: var(--gold);
  margin-top: 5px;
}

.phone span {
  display: grid;
  gap: 3px;
}

.phone strong {
  font-size: 20px;
  font-weight: 500;
}

.phone small {
  color: var(--dim);
  font-size: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  border: 1px solid rgba(255, 230, 167, 0.38);
  border-radius: 7px;
  color: #15100a;
  background:
    linear-gradient(135deg, #fff0b8 0%, #e7bd6b 48%, #bd8437 100%);
  box-shadow: 0 20px 46px rgba(175, 120, 41, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(200, 145, 54, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button--top {
  min-width: 250px;
}

.nav-toggle {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(620px, 980px) minmax(270px, 320px);
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  min-height: calc(100svh - 276px);
  padding-top: 74px;
}

.hero__copy {
  width: 100%;
  min-width: 0;
  max-width: 1120px;
  animation: rise-in 0.9s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 32px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow span {
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, #fff2bd, var(--gold));
}

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

h1 {
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(58px, 3.9vw, 82px);
  font-weight: 600;
  line-height: 0.99;
  text-transform: uppercase;
}

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

.mobile-break {
  display: none;
}

.lead {
  max-width: 635px;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 1.5vw, 30px);
  line-height: 1.48;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 770px;
  margin-bottom: 54px;
}

.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.feature svg {
  width: 38px;
  height: 38px;
  color: var(--gold);
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.feature strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.feature span {
  display: block;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 60px;
}

.button--hero {
  gap: 52px;
  min-width: 398px;
  padding: 0 38px;
}

.button--hero svg {
  width: 34px;
  height: 20px;
  stroke-width: 1.5;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.video-link > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.video-link:hover > span {
  transform: scale(1.06);
  border-color: var(--gold-soft);
}

.video-link svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: none;
  transform: translateX(2px);
}

.video-link p {
  display: grid;
  gap: 6px;
  margin: 0;
}

.video-link strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.video-link small {
  color: var(--muted);
  font-size: 13px;
}

.stats {
  align-self: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(20, 19, 17, 0.83), rgba(10, 10, 10, 0.72));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  animation: fade-in 1s 0.18s ease both;
}

.stat {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 156px;
  padding: 26px 36px;
}

.stat + .stat {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(231, 189, 106, 0.18);
  border-radius: 9px;
  color: var(--gold);
}

.stat__icon svg {
  width: 32px;
  height: 32px;
}

.stat p {
  display: grid;
  gap: 10px;
  margin: 0;
}

.stat strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  line-height: 0.84;
}

.stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 270px 1fr 190px;
  align-items: center;
  gap: 32px;
  min-height: 156px;
  margin-top: 8px;
  padding: 24px 72px;
  border: 1px solid var(--line-cold);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12, 13, 13, 0.8), rgba(8, 8, 8, 0.63));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.trust-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 1.45;
  text-transform: uppercase;
}

.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: rgba(231, 189, 106, 0.72);
}

.trust-strip b {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.trust-strip span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.trust-strip a {
  color: rgba(231, 189, 106, 0.72);
  font-size: 15px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 38px;
  height: 68px;
  transform: translateX(-50%);
}

.scroll-cue::before {
  content: "";
  width: 36px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 24px;
}

.scroll-cue span {
  position: absolute;
  bottom: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.collections-showcase {
  position: relative;
  padding: 64px clamp(24px, 4vw, 72px) 56px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 8%, rgba(231, 189, 106, 0.15), transparent 26%),
    radial-gradient(circle at 9% 42%, rgba(231, 189, 106, 0.08), transparent 28%),
    #050606;
}

.collections-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0.7) 50%, rgba(5, 6, 6, 0.93));
  background-position: center;
  background-size: cover;
  filter: blur(8px) saturate(0.84);
  opacity: 0.28;
  transform: scale(1.04);
}

.collections-showcase.is-bg-loaded::before {
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0.7) 50%, rgba(5, 6, 6, 0.93)),
    image-set(
      url("./assets/benefits-graduates.avif") type("image/avif"),
      url("./assets/benefits-graduates.webp") type("image/webp"),
      url("./assets/benefits-graduates.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
}

.collections-showcase__glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at 52% 18%, rgba(231, 189, 106, 0.09), transparent 22%);
}

.collections-heading {
  max-width: 1500px;
  margin: 0 auto 36px;
  text-align: center;
}

.collections-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 4.7vw, 86px);
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.collections-heading h2 span {
  color: var(--gold);
}

.collections-heading p:last-child {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.55;
}

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

.collection-card {
  position: relative;
  min-height: 586px;
  overflow: hidden;
  border: 1px solid rgba(231, 189, 106, 0.38);
  border-radius: 8px;
  background: rgba(8, 9, 8, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 223, 146, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5), 0 0 34px rgba(231, 189, 106, 0.09);
}

.collection-card__image {
  position: absolute;
  inset: 0 0 214px;
  overflow: hidden;
}

.collection-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(6, 7, 7, 0.96));
}

.collection-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.collection-card:hover .collection-card__image img {
  transform: scale(1.045);
}

.collection-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(231, 189, 106, 0.34);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 28%, rgba(248, 223, 146, 0.22), rgba(9, 10, 9, 0.82) 66%);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(231, 189, 106, 0.22);
}

.collection-badge svg {
  width: 32px;
  height: 32px;
}

.collection-card__icon {
  position: absolute;
  left: 50%;
  top: calc(100% - 296px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(231, 189, 106, 0.45);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 24%, rgba(248, 223, 146, 0.17), rgba(8, 9, 8, 0.96) 68%);
  transform: translateX(-50%);
  box-shadow: 0 0 30px rgba(231, 189, 106, 0.18);
}

.collection-card__icon svg {
  width: 40px;
  height: 40px;
}

.collection-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  min-height: 236px;
  flex-direction: column;
  align-items: center;
  padding: 52px 30px 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.58), rgba(7, 8, 8, 0.98) 34%),
    rgba(8, 9, 8, 0.94);
  border-top: 1px solid rgba(231, 189, 106, 0.16);
}

.collection-card__body h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(29px, 1.8vw, 38px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.collection-card__body p {
  min-height: 66px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.collection-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 326px);
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(231, 189, 106, 0.58);
  border-radius: 6px;
  color: var(--gold-soft);
  background: rgba(8, 9, 8, 0.7);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.collection-card__button:hover {
  color: #1a1206;
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, #f8df92, #c89143);
}

.collection-card__button span {
  font-size: 22px;
}

.collections-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(231, 189, 106, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.collections-feature {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 148px;
  padding: 24px 28px;
}

.collections-feature + .collections-feature {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.collections-feature > span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 20%, rgba(248, 223, 146, 0.14), rgba(8, 9, 8, 0.95) 72%);
}

.collections-feature svg {
  width: 48px;
  height: 48px;
}

.collections-feature h3 {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.collections-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.benefits-showcase {
  position: relative;
  min-height: 100svh;
  padding: 78px clamp(24px, 3vw, 62px) 46px;
  overflow: hidden;
  isolation: isolate;
  background: #060706;
}

.benefits-showcase__image,
.benefits-showcase__shade {
  position: absolute;
  inset: 0;
}

.benefits-showcase__image {
  z-index: -3;
  background-position: center right;
  background-size: cover;
}

.benefits-showcase__image.is-bg-loaded {
  background-image: image-set(
    url("./assets/benefits-graduates.avif") type("image/avif"),
    url("./assets/benefits-graduates.webp") type("image/webp"),
    url("./assets/benefits-graduates.png") type("image/png")
  );
}

.benefits-showcase__shade {
  z-index: -2;
  background:
    radial-gradient(circle at 79% 28%, rgba(231, 189, 106, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(4, 5, 5, 0.98) 0%, rgba(4, 5, 5, 0.9) 31%, rgba(4, 5, 5, 0.48) 52%, rgba(4, 5, 5, 0.12) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.12) 54%, rgba(0, 0, 0, 0.82) 100%);
}

.benefits-showcase__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 940px) minmax(280px, 1fr);
  grid-template-areas:
    "heading image-space"
    "cards image-space"
    "metrics metrics";
  align-items: start;
  gap: 42px 58px;
}

.benefits-heading {
  grid-area: heading;
  max-width: 860px;
  text-align: center;
}

.eyebrow--center {
  justify-content: center;
  width: 100%;
  margin-bottom: 34px;
  font-size: 14px;
  letter-spacing: 0.7px;
}

.eyebrow--center span {
  width: 32px;
}

.benefits-heading h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(54px, 3.55vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  text-transform: uppercase;
}

.benefits-heading h2 span {
  color: var(--gold);
}

.benefits-heading p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.benefit-grid {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
}

.benefit-card {
  display: grid;
  justify-items: center;
  min-height: 238px;
  padding: 28px 24px 25px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(14, 14, 13, 0.68), rgba(9, 9, 9, 0.48));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 189, 106, 0.36);
  background: linear-gradient(180deg, rgba(22, 21, 19, 0.76), rgba(10, 10, 9, 0.56));
}

.benefit-card__icon,
.metric__icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(231, 189, 106, 0.28);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 42%, rgba(231, 189, 106, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 34px rgba(231, 189, 106, 0.1);
}

.benefit-card__icon svg {
  width: 42px;
  height: 42px;
}

.benefit-card h3 {
  margin: 22px 0 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.benefit-metrics {
  grid-area: metrics;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  min-height: 156px;
  margin-top: 10px;
  border: 1px solid rgba(231, 189, 106, 0.24);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(13, 13, 12, 0.76), rgba(8, 8, 8, 0.62));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.metric {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 26px;
  min-height: 118px;
  padding: 22px 42px;
}

.metric + .metric {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.metric__icon {
  width: 72px;
  height: 72px;
  border-color: rgba(231, 189, 106, 0.2);
}

.metric__icon svg {
  width: 38px;
  height: 38px;
}

.metric p {
  display: grid;
  gap: 8px;
  margin: 0;
}

.metric strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 43px;
  font-weight: 600;
  line-height: 0.9;
}

.metric span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.35;
}

.process-showcase {
  position: relative;
  min-height: 100svh;
  padding: 86px clamp(24px, 3vw, 62px) 46px;
  overflow: hidden;
  isolation: isolate;
  background: #050606;
}

.process-showcase__image,
.process-showcase__shade {
  position: absolute;
  inset: 0;
}

.process-showcase__image {
  z-index: -3;
  background-position: center right;
  background-size: cover;
}

.process-showcase__image.is-bg-loaded {
  background-image: image-set(
    url("./assets/process-products.avif") type("image/avif"),
    url("./assets/process-products.webp") type("image/webp"),
    url("./assets/process-products.png") type("image/png")
  );
}

.process-showcase__shade {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 20%, rgba(231, 189, 106, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(4, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.83) 32%, rgba(5, 5, 5, 0.28) 58%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.12) 55%, rgba(0, 0, 0, 0.82) 100%);
}

.process-showcase__content {
  position: relative;
  z-index: 1;
}

.process-heading {
  max-width: 1020px;
}

.process-heading h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(58px, 3.85vw, 78px);
  font-weight: 600;
  line-height: 1.03;
  text-transform: uppercase;
}

.process-heading h2 span {
  display: block;
  color: var(--gold);
}

.process-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.58;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 92px;
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 300px;
  padding: 82px 28px 32px;
  border: 1px solid rgba(231, 189, 106, 0.28);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(11, 11, 10, 0.72), rgba(7, 7, 7, 0.48));
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.process-step__icon {
  position: absolute;
  top: -76px;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(231, 189, 106, 0.42);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 42%, rgba(231, 189, 106, 0.17), transparent 58%),
    rgba(7, 7, 7, 0.92);
  box-shadow: 0 0 34px rgba(231, 189, 106, 0.16);
  transform: translateX(-50%);
}

.process-step__icon svg {
  width: 58px;
  height: 58px;
}

.process-step__line {
  position: absolute;
  top: -16px;
  left: calc(50% + 68px);
  width: calc(100% - 8px);
  border-top: 1px dotted rgba(231, 189, 106, 0.72);
}

.process-step__line::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}

.process-step strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
}

.process-step h3 {
  margin: 18px 0 16px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.process-summary {
  margin-top: 56px;
  padding: 30px 38px 30px;
  border: 1px solid rgba(231, 189, 106, 0.26);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(13, 13, 12, 0.77), rgba(8, 8, 8, 0.64));
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

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

.process-summary__item {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 26px;
  min-height: 96px;
  padding: 0 30px;
}

.process-summary__item + .process-summary__item {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.process-summary__item > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(231, 189, 106, 0.24);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 42%, rgba(231, 189, 106, 0.18), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

.process-summary__item svg {
  width: 38px;
  height: 38px;
}

.process-summary__item p {
  display: grid;
  gap: 8px;
  margin: 0;
}

.process-summary__item strong {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-summary__item small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.process-summary__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  margin-top: 34px;
}

.process-phone {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.process-phone > svg {
  width: 46px;
  height: 46px;
  color: var(--gold);
}

.process-phone span {
  display: grid;
  gap: 8px;
}

.process-phone strong {
  font-size: 17px;
  font-weight: 500;
}

.process-phone small {
  color: var(--dim);
  font-size: 14px;
}

.process-button {
  gap: 44px;
  min-width: 410px;
  padding-inline: 38px;
}

.process-button svg {
  width: 34px;
  height: 20px;
}

.reviews-showcase {
  position: relative;
  min-height: 100svh;
  padding: 70px clamp(24px, 4vw, 72px) 76px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 34%, rgba(231, 189, 106, 0.1), transparent 24%),
    radial-gradient(circle at 10% 58%, rgba(231, 189, 106, 0.06), transparent 19%),
    #050606;
}

.reviews-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.94), rgba(5, 6, 6, 0.86) 48%, rgba(5, 6, 6, 0.96)),
    image-set(
      url("./assets/benefits-graduates.webp") type("image/webp"),
      url("./assets/benefits-graduates.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
  filter: blur(10px) saturate(0.78);
  opacity: 0.2;
  transform: scale(1.06);
}

.reviews-showcase__glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 52%, rgba(231, 189, 106, 0.13), transparent 18%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.52));
}

.reviews-heading {
  max-width: 960px;
  margin: 0 auto 50px;
  text-align: center;
}

.reviews-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 4.6vw, 86px);
  font-weight: 600;
  line-height: 0.92;
  text-transform: uppercase;
}

.reviews-heading h2 > span:not(.reviews-heading__dash) {
  display: block;
  color: var(--gold);
}

.reviews-heading__dash {
  color: var(--text);
}

.reviews-heading p:last-child {
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.55;
}

.reviews-slider {
  position: relative;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 1740px;
  margin: 0 auto;
}

.review-card {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(231, 189, 106, 0.46);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 13, 12, 0.78), rgba(7, 8, 8, 0.9));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.review-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.review-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.review-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 38px 38px;
}

.review-stars {
  color: var(--gold-soft);
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 1;
}

.review-quote {
  margin-top: 34px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.5;
}

.review-card__content p {
  margin: 12px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.review-line {
  width: 116px;
  height: 1px;
  margin-bottom: 24px;
  background: rgba(231, 189, 106, 0.36);
}

.review-card__content strong {
  color: var(--gold-soft);
  font-size: 18px;
}

.review-card__content small {
  margin-top: 8px;
  color: var(--dim);
  font-size: 15px;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(231, 189, 106, 0.45);
  border-radius: 50%;
  color: var(--gold-soft);
  background:
    radial-gradient(circle at 50% 36%, rgba(231, 189, 106, 0.18), rgba(8, 9, 8, 0.92) 68%);
  cursor: pointer;
  transform: translateY(-50%);
}

.reviews-arrow svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.5;
}

.reviews-arrow--left {
  left: -48px;
}

.reviews-arrow--right {
  right: -48px;
}

.reviews-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 62px;
}

.reviews-avatars {
  display: flex;
  align-items: center;
}

.reviews-avatars picture {
  display: block;
  margin-left: -12px;
}

.reviews-avatars img {
  width: 58px;
  height: 58px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  background: #090a09;
}

.reviews-avatars img:first-child {
  margin-left: 0;
}

.reviews-trust p {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}

.reviews-trust strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
}

.reviews-trust span {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.faq-showcase {
  position: relative;
  min-height: 100svh;
  padding: 54px clamp(24px, 4vw, 72px) 56px;
  overflow: hidden;
  isolation: isolate;
  background: #050606;
}

.faq-showcase__image,
.faq-showcase__shade {
  position: absolute;
  inset: 0;
}

.faq-showcase__image {
  z-index: -3;
  background-position: left center;
  background-size: cover;
  transform: scale(1.02);
}

.faq-showcase__image.is-bg-loaded {
  background-image: image-set(
    url("./assets/faq-products.avif") type("image/avif"),
    url("./assets/faq-products.webp") type("image/webp"),
    url("./assets/faq-products.png") type("image/png")
  );
}

.faq-showcase__shade {
  z-index: -2;
  background:
    radial-gradient(circle at 20% 22%, rgba(231, 189, 106, 0.1), transparent 22%),
    linear-gradient(90deg, rgba(3, 4, 4, 0.18) 0%, rgba(5, 6, 6, 0.74) 23%, rgba(5, 6, 6, 0.96) 40%, rgba(5, 6, 6, 0.98) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.68));
}

.faq-showcase__content {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin-left: auto;
}

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

.faq-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 3.8vw, 74px);
  font-weight: 600;
  line-height: 0.94;
  text-transform: uppercase;
}

.faq-heading h2 span {
  display: block;
  color: var(--gold);
}

.faq-heading p:last-child {
  max-width: 610px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 34px;
}

.faq-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr 34px;
  align-items: center;
  gap: 22px;
  min-height: 126px;
  padding: 16px 24px 16px 20px;
  border: 1px solid rgba(231, 189, 106, 0.23);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(13, 13, 12, 0.75), rgba(8, 8, 8, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  transition: border-color 0.22s ease, background 0.22s ease;
}

.faq-card.is-open {
  border-color: rgba(231, 189, 106, 0.48);
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.8), rgba(8, 8, 8, 0.68));
}

.faq-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(231, 189, 106, 0.26);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 40%, rgba(231, 189, 106, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.025);
}

.faq-card__icon svg {
  width: 38px;
  height: 38px;
}

.faq-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  font-weight: 700;
}

.faq-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.faq-card__toggle {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
}

.faq-card__toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-card__toggle span + span {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq-card.is-open .faq-card__toggle span + span {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-contact {
  display: grid;
  grid-template-columns: 86px 1fr minmax(210px, auto) minmax(210px, auto);
  align-items: center;
  gap: 26px;
  margin-top: 30px;
  padding: 18px 32px;
  border: 1px solid rgba(231, 189, 106, 0.32);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(13, 13, 12, 0.78), rgba(8, 8, 8, 0.64));
  backdrop-filter: blur(12px);
}

.faq-contact__icon,
.faq-contact__link span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(231, 189, 106, 0.24);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 42%, rgba(231, 189, 106, 0.18), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

.faq-contact__icon svg {
  width: 40px;
  height: 40px;
}

.faq-contact p {
  display: grid;
  gap: 8px;
  margin: 0;
}

.faq-contact strong {
  font-size: 21px;
  font-weight: 500;
}

.faq-contact p span {
  color: var(--muted);
  font-size: 16px;
}

.faq-contact__link {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.55;
}

.faq-contact__link + .faq-contact__link {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.faq-contact__link span svg {
  width: 34px;
  height: 34px;
}

.application-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(460px, 700px);
  gap: clamp(44px, 5vw, 90px);
  align-items: center;
  min-height: 100svh;
  padding: 70px clamp(24px, 4vw, 72px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 24%, rgba(231, 189, 106, 0.12), transparent 24%),
    radial-gradient(circle at 15% 80%, rgba(231, 189, 106, 0.13), transparent 24%),
    #050606;
}

.application-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.78) 54%, rgba(5, 6, 6, 0.96)),
    image-set(
      url("./assets/benefits-graduates.webp") type("image/webp"),
      url("./assets/benefits-graduates.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
  filter: blur(12px) saturate(0.7);
  opacity: 0.15;
  transform: scale(1.06);
}

.application-showcase__glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 74%, rgba(231, 189, 106, 0.12), transparent 22%),
    linear-gradient(140deg, transparent 0%, transparent 58%, rgba(231, 189, 106, 0.08) 100%);
}

.application-showcase__glow::after {
  content: "";
  position: absolute;
  left: -8%;
  right: 38%;
  bottom: 42px;
  height: 180px;
  border-bottom: 2px solid rgba(231, 189, 106, 0.42);
  border-radius: 0 0 100% 100%;
  filter: drop-shadow(0 0 18px rgba(231, 189, 106, 0.42));
  transform: rotate(-4deg);
}

.application-info {
  max-width: 900px;
  text-align: center;
}

.application-info .eyebrow {
  justify-content: center;
}

.application-info h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 4.8vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.application-info h2 span {
  display: block;
  color: var(--gold);
}

.application-lead {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.55;
}

.application-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
}

.application-steps article {
  display: grid;
  justify-items: center;
  text-align: center;
}

.application-steps span {
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(231, 189, 106, 0.38);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 40%, rgba(231, 189, 106, 0.16), transparent 58%),
    rgba(8, 8, 8, 0.82);
  box-shadow: 0 0 34px rgba(231, 189, 106, 0.12);
}

.application-steps svg {
  width: 58px;
  height: 58px;
}

.application-steps h3 {
  margin: 24px 0 10px;
  color: var(--gold-soft);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.application-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.application-guide {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 34px;
  max-width: 810px;
  min-height: 210px;
  margin: 58px auto 0;
  padding: 20px 42px 20px 20px;
  border: 1px solid rgba(231, 189, 106, 0.22);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(14, 14, 13, 0.76), rgba(8, 8, 8, 0.54));
  text-align: left;
  backdrop-filter: blur(10px);
}

.application-guide picture {
  display: block;
  width: 100%;
}

.application-guide img {
  width: 100%;
  height: 170px;
  border-radius: 6px;
  object-fit: cover;
}

.application-guide h3 {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.application-guide strong {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
}

.application-guide p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.application-form {
  display: grid;
  gap: 14px;
  padding: 34px 52px 0;
  overflow: hidden;
  border: 1px solid rgba(231, 189, 106, 0.38);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(231, 189, 106, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(14, 14, 13, 0.82), rgba(7, 8, 8, 0.82));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.application-form.is-sent {
  border-color: rgba(248, 223, 146, 0.62);
}

.application-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.application-form__icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 4px;
  border: 1px solid rgba(231, 189, 106, 0.35);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 40%, rgba(231, 189, 106, 0.18), transparent 58%),
    rgba(8, 8, 8, 0.75);
}

.application-form__icon svg {
  width: 48px;
  height: 48px;
}

.application-form h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.application-form > p {
  margin: -6px 0 12px;
  color: var(--muted);
  font-size: 17px;
  text-align: center;
}

.application-form > .application-status {
  margin-bottom: 12px;
}

.application-status--success {
  color: var(--gold-soft);
}

.application-status--error {
  color: #ffb4a8;
}

.form-field {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.form-field svg {
  width: 25px;
  height: 25px;
  color: var(--gold);
}

.form-field input,
.form-field select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 16px;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.form-field select {
  appearance: none;
  color: rgba(255, 255, 255, 0.72);
}

.form-field select option {
  color: #14110c;
}

.form-field--select {
  grid-template-columns: 1fr 24px;
}

.form-field--select svg {
  justify-self: end;
}

.application-submit {
  justify-content: space-between;
  min-height: 72px;
  margin-top: 10px;
  padding-inline: 54px;
  font-size: 18px;
}

.application-submit svg {
  width: 42px;
  height: 24px;
}

.application-privacy {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 18px;
  color: var(--dim);
  font-size: 14px;
}

.application-privacy svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--gold);
}

.application-call {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 24px;
  margin: 12px -52px 0;
  padding: 26px 52px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 17px;
}

.application-call span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(231, 189, 106, 0.28);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 42%, rgba(231, 189, 106, 0.18), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

.application-call svg {
  width: 34px;
  height: 34px;
}

.application-call strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.site-footer {
  overflow: hidden;
  background: #050606;
}

.service-hero {
  position: relative;
  min-height: 92svh;
  padding: 34px clamp(24px, 3vw, 62px) 72px;
  overflow: hidden;
  isolation: isolate;
}

.service-hero__image,
.service-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.service-hero__image {
  background-image: image-set(
    url("./assets/hero-graduation.avif") type("image/avif"),
    url("./assets/hero-graduation.webp") type("image/webp"),
    url("./assets/hero-graduation.png") type("image/png")
  );
  background-position: center right;
  background-size: cover;
}

.service-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.98) 0%, rgba(3, 4, 4, 0.88) 34%, rgba(3, 3, 3, 0.42) 64%, rgba(3, 3, 3, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.95) 100%);
}

.service-hero__content {
  display: grid;
  grid-template-columns: minmax(520px, 820px) minmax(280px, 360px);
  align-items: center;
  justify-content: space-between;
  gap: 52px;
  min-height: calc(92svh - 170px);
  padding-top: 72px;
}

.service-hero__copy h1 {
  max-width: 900px;
}

.service-hero__copy h1 span {
  display: block;
  color: var(--gold-soft);
}

.service-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-hero__link {
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.service-summary {
  display: grid;
  border: 1px solid rgba(231, 189, 106, 0.24);
  border-radius: 8px;
  background: rgba(8, 8, 7, 0.58);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.service-summary div {
  padding: 30px 32px;
}

.service-summary div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  line-height: 0.95;
}

.service-summary span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.service-benefits,
.service-faq {
  position: relative;
  padding: clamp(76px, 8vw, 128px) clamp(20px, 4vw, 72px);
  background:
    radial-gradient(circle at 15% 5%, rgba(231, 189, 106, 0.13), transparent 30%),
    #050606;
}

.service-section-heading {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.service-section-heading--left {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

.service-section-heading h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-section-heading h2 span {
  color: var(--gold-soft);
}

.service-section-heading p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.service-section-heading--left p:last-child {
  margin-left: 0;
}

.service-benefit-grid,
.service-faq__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card,
.service-faq__grid article {
  border: 1px solid rgba(231, 189, 106, 0.2);
  border-radius: 8px;
  background: rgba(12, 12, 11, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.service-card {
  min-height: 340px;
  padding: 34px;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 34px;
  border: 1px solid rgba(231, 189, 106, 0.34);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(231, 189, 106, 0.1);
}

.service-card__icon svg {
  width: 38px;
  height: 38px;
}

.service-card h3,
.service-faq__grid h3 {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.service-card p,
.service-faq__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-process {
  position: relative;
  padding: clamp(84px, 9vw, 140px) clamp(20px, 4vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.service-process__image,
.service-process__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.service-process__image {
  background-image: image-set(
    url("./assets/process-products.webp") type("image/webp"),
    url("./assets/process-products.png") type("image/png")
  );
  background-position: center right;
  background-size: cover;
}

.service-process__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 5, 5, 0.98) 0%, rgba(4, 5, 5, 0.86) 52%, rgba(4, 5, 5, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.92) 100%);
}

.service-process__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.service-steps article {
  min-height: 258px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 8, 7, 0.64);
  backdrop-filter: blur(14px);
}

.service-steps span {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 0.9;
}

.service-steps h3 {
  margin: 0 0 12px;
  font-size: 18px;
  text-transform: uppercase;
}

.service-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.service-faq__grid article {
  padding: 30px;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1280px;
  margin: 34px auto 0;
  padding: 30px;
  border: 1px solid rgba(231, 189, 106, 0.26);
  border-radius: 8px;
  background: rgba(12, 12, 11, 0.82);
}

.service-cta strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
}

.service-cta span {
  color: var(--muted);
  line-height: 1.6;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(420px, 640px);
  gap: 70px;
  align-items: center;
  min-height: 520px;
  padding: 70px clamp(24px, 4vw, 72px);
  isolation: isolate;
  border-bottom: 1px solid rgba(231, 189, 106, 0.8);
}

.footer-cta__image,
.footer-cta__shade {
  position: absolute;
  inset: 0;
}

.footer-cta__image {
  z-index: -3;
  background-position: right center;
  background-size: cover;
}

.footer-cta__image.is-bg-loaded {
  background-image: image-set(
    url("./assets/footer-products.avif") type("image/avif"),
    url("./assets/footer-products.webp") type("image/webp"),
    url("./assets/footer-products.png") type("image/png")
  );
}

.footer-cta__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.98), rgba(5, 6, 6, 0.8) 43%, rgba(5, 6, 6, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.62));
}

.footer-cta__inner {
  max-width: 720px;
  text-align: center;
}

.footer-crest,
.footer-brand__mark {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-display);
}

.footer-crest {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border: 1px solid rgba(231, 189, 106, 0.22);
  border-radius: 50%;
}

.footer-crest span,
.footer-brand__mark span {
  font-size: 48px;
  line-height: 1;
}

.footer-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 4.5vw, 82px);
  font-weight: 600;
  line-height: 0.96;
  text-transform: uppercase;
}

.footer-cta h2 span {
  display: block;
  color: var(--gold);
}

.footer-cta__inner p {
  max-width: 610px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.footer-consult {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px 26px;
  align-items: center;
  max-width: 540px;
  padding-left: 58px;
  border-left: 1px solid rgba(231, 189, 106, 0.42);
}

.footer-consult > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(231, 189, 106, 0.38);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 42%, rgba(231, 189, 106, 0.16), transparent 58%),
    rgba(8, 8, 8, 0.8);
}

.footer-consult svg {
  width: 34px;
  height: 34px;
}

.footer-consult strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  text-transform: uppercase;
}

.footer-consult small {
  color: var(--muted);
  font-size: 16px;
}

.footer-consult__button {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 38px;
  border: 1px solid rgba(231, 189, 106, 0.62);
  border-radius: 6px;
  color: var(--gold-soft);
  background: rgba(8, 9, 8, 0.62);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-consult__button svg {
  width: 40px;
  height: 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(140px, 0.78fr) minmax(160px, 0.8fr) minmax(250px, 1fr) minmax(330px, 1.45fr);
  gap: 44px;
  padding: 58px clamp(24px, 4vw, 72px) 48px;
}

.footer-brand {
  display: grid;
  justify-items: center;
  align-content: start;
  padding-right: 34px;
  border-right: 1px solid rgba(231, 189, 106, 0.18);
  text-align: center;
}

.footer-brand__mark {
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  border: 1px solid rgba(231, 189, 106, 0.22);
  border-radius: 50%;
}

.footer-brand strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 8px;
  line-height: 1;
}

.footer-brand small {
  margin-top: 8px;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 9px;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 330px;
  margin: 32px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(231, 189, 106, 0.55);
  border-radius: 50%;
  color: var(--gold);
}

.footer-socials svg {
  width: 27px;
  height: 27px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 17px;
  padding-left: 20px;
  border-left: 1px solid rgba(231, 189, 106, 0.14);
}

.footer-column h3,
.footer-reasons h3 {
  position: relative;
  margin: 0 0 20px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-column h3::after,
.footer-reasons h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-column a {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.25;
}

.footer-contacts {
  font-style: normal;
}

.footer-contacts a {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
}

.footer-contacts svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.footer-reasons {
  display: grid;
  align-content: start;
  padding-left: 34px;
  border-left: 1px solid rgba(231, 189, 106, 0.14);
}

.footer-reasons > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 14px 0;
}

.footer-reasons > div + div {
  border-top: 1px solid rgba(231, 189, 106, 0.18);
}

.footer-reasons span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--gold);
}

.footer-reasons svg {
  width: 44px;
  height: 44px;
}

.footer-reasons p {
  display: grid;
  gap: 7px;
  margin: 0;
}

.footer-reasons strong {
  font-size: 16px;
  font-weight: 600;
}

.footer-reasons small {
  color: var(--muted);
  font-size: 15px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 0 clamp(24px, 4vw, 72px);
  padding: 28px 0 34px;
  border-top: 1px solid rgba(231, 189, 106, 0.35);
  color: var(--dim);
}

.footer-bottom p {
  margin: 0;
  font-size: 15px;
}

.footer-bottom > span {
  color: var(--gold);
}

.footer-bottom svg {
  width: 42px;
  height: 28px;
}

.footer-bottom nav {
  display: flex;
  justify-content: flex-end;
  gap: 42px;
}

.footer-bottom a {
  color: var(--dim);
  font-size: 15px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-shell > .header {
  padding: 34px clamp(24px, 3vw, 62px) 0;
}

.wp-content-section {
  min-height: 58vh;
  padding: clamp(72px, 9vw, 132px) clamp(24px, 5vw, 88px);
}

.wp-content-card {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 11, 0.76);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.wp-content-card h1,
.wp-content-card h2 {
  margin: 0 0 24px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.wp-content-card h1 {
  font-size: clamp(42px, 6vw, 78px);
}

.wp-content-card h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.wp-content-body,
.wp-post-list__item {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.wp-post-list {
  display: grid;
  gap: 26px;
}

.wp-post-list__item + .wp-post-list__item {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.blog-shell,
.single-shell {
  min-height: 70vh;
  padding: clamp(54px, 7vw, 112px) clamp(18px, 4vw, 72px) clamp(70px, 8vw, 120px);
  background:
    radial-gradient(circle at 78% 8%, rgba(231, 189, 106, 0.13), transparent 28%),
    radial-gradient(circle at 11% 38%, rgba(255, 255, 255, 0.045), transparent 24%),
    #050606;
}

.not-found-shell {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 74vh;
  padding: clamp(64px, 8vw, 126px) clamp(18px, 4vw, 72px) clamp(78px, 9vw, 132px);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.88) 45%, rgba(5, 6, 6, 0.46) 100%),
    image-set(
      url("./assets/hero-graduation.avif") type("image/avif"),
      url("./assets/hero-graduation.webp") type("image/webp"),
      url("./assets/hero-graduation.png") type("image/png")
    ) center right / cover no-repeat,
    #050606;
}

.not-found-shell::before {
  content: "";
  position: absolute;
  inset: auto -8% -24% 34%;
  height: 48%;
  background: radial-gradient(ellipse at center, rgba(231, 189, 106, 0.24), transparent 66%);
  pointer-events: none;
}

.not-found {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 420px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 52px);
  width: min(100%, 1320px);
  margin-inline: auto;
}

.not-found__copy {
  width: min(100%, 760px);
}

.not-found .eyebrow {
  margin-bottom: 22px;
}

.not-found h1 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.not-found__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.65;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.not-found__link {
  display: inline-flex;
  align-items: center;
  min-height: 66px;
  padding-inline: 22px;
  border: 1px solid rgba(231, 189, 106, 0.28);
  border-radius: 7px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.not-found__link:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 223, 146, 0.62);
  color: #fff3bf;
}

.not-found__code {
  display: inline-grid;
  place-items: center;
  width: min(100%, 420px);
  min-height: 220px;
  border: 1px solid rgba(231, 189, 106, 0.28);
  border-radius: 8px;
  color: rgba(248, 223, 146, 0.9);
  background:
    linear-gradient(180deg, rgba(15, 15, 13, 0.72), rgba(5, 6, 6, 0.84)),
    radial-gradient(circle at 50% 0%, rgba(231, 189, 106, 0.18), transparent 54%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  font-family: var(--font-display);
  font-size: clamp(82px, 10vw, 140px);
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.blog-hero,
.single-hero,
.single-content,
.single-nav,
.single-cta,
.navigation.pagination {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.blog-hero {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(34px, 5vw, 64px);
  text-align: center;
}

.blog-hero .eyebrow,
.single-hero .eyebrow,
.single-cta .eyebrow {
  justify-content: center;
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: 0.7px;
}

.blog-hero h1,
.single-hero h1,
.single-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.96;
  text-transform: uppercase;
}

.blog-hero h1 {
  color: var(--gold-soft);
  font-size: clamp(48px, 7vw, 104px);
}

.blog-hero__lead {
  width: min(100%, 760px);
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.65;
}

.blog-hero__lead p {
  margin: 0;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(100%, 1120px);
  margin: 0 auto clamp(32px, 4vw, 48px);
}

.blog-categories a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(231, 189, 106, 0.26);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(12, 12, 11, 0.62);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.blog-categories a:hover,
.blog-categories a.is-active {
  color: #1a1206;
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, #f8df92, #c89143);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.blog-card {
  display: grid;
  grid-template-rows: minmax(230px, 0.8fr) 1fr;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(231, 189, 106, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 16, 14, 0.82), rgba(8, 8, 8, 0.94));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 223, 146, 0.62);
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.48);
}

.blog-card__media,
.single-hero__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(231, 189, 106, 0.72);
  background:
    linear-gradient(135deg, rgba(231, 189, 106, 0.2), rgba(8, 8, 8, 0.88)),
    image-set(
      url("./assets/collection-premium.avif") type("image/avif"),
      url("./assets/collection-premium.webp") type("image/webp"),
      url("./assets/collection-premium.png") type("image/png")
    ) center/cover;
}

.blog-card__media::after,
.single-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 7, 7, 0.86));
}

.blog-card__media img,
.single-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.blog-card__media span,
.single-hero__media span {
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(231, 189, 106, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-meta a {
  color: var(--gold-soft);
}

.blog-card h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(31px, 2.15vw, 44px);
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.blog-card__excerpt {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.blog-card__excerpt p {
  margin: 0;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card__link span {
  font-size: 24px;
}

.blog-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 11, 0.76);
  text-align: center;
}

.blog-empty h2 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.blog-empty p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.navigation.pagination {
  margin-top: 44px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav-links .page-numbers {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(231, 189, 106, 0.28);
  border-radius: 6px;
  color: var(--gold-soft);
  background: rgba(12, 12, 11, 0.66);
  font-weight: 800;
}

.nav-links .page-numbers.current {
  color: #1a1206;
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, #f8df92, #c89143);
}

.single-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: stretch;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.single-hero__copy {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 16, 14, 0.82), rgba(8, 8, 8, 0.94));
}

.single-back {
  width: max-content;
  margin-bottom: 30px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.single-back::before {
  content: "←";
  margin-right: 10px;
}

.single-hero h1 {
  color: var(--gold-soft);
  font-size: clamp(46px, 5.9vw, 92px);
  overflow-wrap: anywhere;
}

.single-hero__media {
  min-height: 480px;
  border: 1px solid rgba(231, 189, 106, 0.32);
  border-radius: 8px;
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.36);
}

.single-content {
  max-width: 920px;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(12, 12, 11, 0.78);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.single-content .wp-content-body {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.1vw, 20px);
}

.single-content .wp-content-body h2,
.single-content .wp-content-body h3 {
  margin: 1.5em 0 0.6em;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.single-content .wp-content-body a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.single-content .wp-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.single-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.single-nav a {
  display: grid;
  min-height: 120px;
  padding: 24px;
  border: 1px solid rgba(231, 189, 106, 0.28);
  border-radius: 8px;
  color: var(--text);
  background: rgba(12, 12, 11, 0.72);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.04;
}

.single-nav span {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.single-nav div:empty {
  display: none;
}

.single-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.95), rgba(5, 6, 6, 0.68)),
    image-set(
      url("./assets/footer-products.webp") type("image/webp"),
      url("./assets/footer-products.png") type("image/png")
    ) center/cover;
}

.single-cta .eyebrow {
  justify-content: flex-start;
}

.single-cta h2 {
  max-width: 720px;
  color: var(--text);
  font-size: clamp(34px, 4vw, 62px);
}

.single-cta .button {
  flex: 0 0 auto;
  min-width: 230px;
  padding-inline: 28px;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-3px);
  }
  50% {
    opacity: 1;
    transform: translateY(4px);
  }
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .trust-strip li {
    display: block;
    text-align: center;
  }

  .trust-strip b {
    font-size: 29px;
  }

  .trust-strip span {
    display: none;
  }
}

@media (max-width: 1420px) {
  .header {
    gap: 16px;
  }

  .brand {
    min-width: 232px;
  }

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

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 13px;
  }

  .phone small {
    display: none;
  }

  .phone strong {
    font-size: 18px;
  }

  .header__contacts {
    gap: 18px;
  }

  .button--top {
    min-width: 190px;
    min-height: 58px;
  }

  .hero__content {
    grid-template-columns: minmax(520px, 1fr) 300px;
  }

  .trust-strip {
    grid-template-columns: 230px 1fr 150px;
    padding-inline: 44px;
  }

  .trust-strip ul {
    gap: 18px;
  }

  .trust-strip b {
    font-size: 24px;
  }

  .trust-strip span {
    font-size: 14px;
    line-height: 1.05;
  }

  .review-cards {
    gap: 22px;
  }

  .review-card__content {
    padding-inline: 28px;
  }

  .reviews-arrow {
    display: none;
  }

  .footer-main {
    grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(150px, 0.7fr)) minmax(240px, 1fr);
  }

  .footer-reasons {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(231, 189, 106, 0.18);
    border-left: 0;
  }

  .footer-reasons h3 {
    grid-column: 1 / -1;
  }

  .footer-reasons > div {
    padding-inline: 18px;
  }

  .footer-reasons > div + div {
    border-top: 0;
    border-left: 1px solid rgba(231, 189, 106, 0.18);
  }
}

@media (max-width: 1320px) {
  .phone {
    display: none;
  }

  .hero__content {
    grid-template-columns: minmax(500px, 1fr) 300px;
    gap: 28px;
  }

  .stats {
    transform: translateY(-12px);
  }

  .stat {
    min-height: 138px;
    padding: 21px 28px;
  }

  .trust-strip {
    min-height: 136px;
  }

  .application-showcase {
    grid-template-columns: 1fr;
  }

  .application-info {
    max-width: none;
  }

  .application-form {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

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

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

  .collections-feature:nth-child(3) {
    border-left: 0;
  }

  .collections-feature:nth-child(3),
  .collections-feature:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-hero__content {
    grid-template-columns: minmax(480px, 1fr) 300px;
  }

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

@media (max-width: 1180px) {
  .hero {
    padding-top: 24px;
  }

  .header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    gap: 7px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: white;
    background: rgba(0, 0, 0, 0.24);
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    margin: auto;
    background: currentColor;
  }

  .nav-toggle span + span {
    margin-top: -17px;
  }

  .nav {
    position: fixed;
    inset: 86px 24px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(16px);
  }

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

  .header__contacts {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-top: 78px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .service-hero {
    min-height: auto;
  }

  .service-hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 78px;
  }

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

  .service-summary div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .stat {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .stat + .stat {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 40px;
    padding: 28px;
  }

  .trust-strip ul {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .collections-showcase {
    padding-top: 68px;
  }

  .collections-heading .eyebrow--center {
    justify-content: center;
  }

  .collection-card {
    min-height: 642px;
  }

  .collection-card__image {
    bottom: 238px;
  }

  .collection-card__icon {
    top: calc(100% - 284px);
  }

  .collection-card__body {
    min-height: 260px;
    padding-inline: 30px;
  }

  .benefits-showcase__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "cards"
      "metrics";
  }

  .benefits-heading {
    text-align: left;
  }

  .eyebrow--center {
    justify-content: flex-start;
  }

  .benefits-heading p {
    margin-left: 0;
  }

  .benefit-grid {
    max-width: none;
  }

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

  .metric:nth-child(3) {
    border-left: 0;
  }

  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 88px 20px;
  }

  .process-step__line {
    display: none;
  }

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

  .process-summary__item:nth-child(3) {
    border-left: 0;
  }

  .process-summary__item:nth-child(3),
  .process-summary__item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .process-summary__cta {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .process-button {
    min-width: 0;
    width: 100%;
    justify-content: space-between;
  }

  .review-cards {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .review-card {
    min-height: 360px;
  }

  .review-card img {
    min-height: 360px;
  }

  .reviews-trust {
    align-items: flex-start;
    flex-direction: column;
    max-width: 760px;
    margin-inline: auto;
  }

  .faq-showcase__content {
    max-width: 920px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-contact {
    grid-template-columns: 72px 1fr;
  }

  .faq-contact__link {
    grid-column: span 2;
  }

  .faq-contact__link + .faq-contact__link {
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .application-steps {
    max-width: 900px;
    margin-inline: auto;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-consult {
    max-width: 640px;
    margin-inline: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    border-right: 0;
  }

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

  .footer-reasons > div:nth-of-type(3) {
    border-left: 0;
  }

  .footer-reasons > div:nth-of-type(3),
  .footer-reasons > div:nth-of-type(4) {
    border-top: 1px solid rgba(231, 189, 106, 0.18);
  }

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

  .single-hero {
    grid-template-columns: 1fr;
  }

  .single-hero__copy,
  .single-hero__media {
    min-height: 380px;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
    padding: 20px 18px 34px;
  }

  .hero__image {
    background-image: image-set(
      url("./assets/hero-graduation-mobile.avif") type("image/avif"),
      url("./assets/hero-graduation-mobile.webp") type("image/webp"),
      url("./assets/hero-graduation.webp") type("image/webp"),
      url("./assets/hero-graduation.png") type("image/png")
    );
    background-position: 64% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(2, 3, 3, 0.96) 0%, rgba(3, 4, 4, 0.74) 56%, rgba(3, 3, 3, 0.34) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.94) 100%);
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand__mark,
  .brand__mark svg {
    width: 43px;
  }

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

  .brand small {
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .hero__content {
    padding-top: 58px;
    gap: 34px;
  }

  .hero__copy {
    max-width: calc(100vw - 48px);
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .eyebrow span {
    width: 35px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(33px, 8.8vw, 42px);
  }

  .mobile-break {
    display: block;
  }

  .lead {
    max-width: 340px;
    margin-bottom: 32px;
    font-size: 18px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .service-hero {
    padding: 20px 18px 54px;
  }

  .service-hero__image {
    background-image: image-set(
      url("./assets/hero-graduation-mobile.avif") type("image/avif"),
      url("./assets/hero-graduation-mobile.webp") type("image/webp"),
      url("./assets/hero-graduation.webp") type("image/webp"),
      url("./assets/hero-graduation.png") type("image/png")
    );
    background-position: 64% center;
  }

  .service-hero__shade {
    background:
      linear-gradient(90deg, rgba(2, 3, 3, 0.96) 0%, rgba(3, 4, 4, 0.76) 64%, rgba(3, 3, 3, 0.36) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0.95) 100%);
  }

  .service-hero__content {
    padding-top: 58px;
    gap: 34px;
  }

  .service-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-summary {
    grid-template-columns: 1fr;
  }

  .service-summary div {
    padding: 22px;
  }

  .service-summary div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .service-summary strong {
    font-size: 36px;
  }

  .service-benefits,
  .service-faq,
  .service-process {
    padding: 62px 18px 54px;
  }

  .service-section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .service-section-heading .eyebrow--center {
    justify-content: flex-start;
  }

  .service-section-heading h2 {
    max-width: 360px;
    font-size: clamp(38px, 11vw, 52px);
  }

  .service-section-heading p:last-child {
    margin-left: 0;
    font-size: 17px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-card__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
  }

  .service-card__icon svg {
    width: 32px;
    height: 32px;
  }

  .service-card h3,
  .service-faq__grid h3 {
    font-size: 30px;
  }

  .service-process__image {
    background-position: 64% top;
  }

  .service-steps,
  .service-faq__grid {
    grid-template-columns: 1fr;
  }

  .service-steps article {
    min-height: auto;
    padding: 24px;
  }

  .service-steps span {
    margin-bottom: 32px;
    font-size: 38px;
  }

  .service-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .button--hero {
    min-width: 0;
    width: 100%;
    max-width: 342px;
    justify-content: space-between;
    min-height: 62px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 19px;
  }

  .stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat strong {
    font-size: 36px;
  }

  .trust-strip {
    margin-top: 24px;
    padding: 24px 20px;
  }

  .trust-strip ul {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .trust-strip span {
    font-size: 15px;
  }

  .scroll-cue {
    display: none;
  }

  .collections-showcase {
    padding: 62px 18px 54px;
  }

  .collections-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .collections-heading .eyebrow--center {
    justify-content: flex-start;
  }

  .collections-heading h2 {
    max-width: 360px;
    font-size: clamp(39px, 11vw, 52px);
    line-height: 0.94;
  }

  .collections-heading p:last-child {
    max-width: 350px;
    margin-left: 0;
    font-size: 17px;
  }

  .collection-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .collection-card {
    min-height: 594px;
  }

  .collection-card__image {
    bottom: 232px;
  }

  .collection-card__icon {
    top: calc(100% - 276px);
    width: 68px;
    height: 68px;
  }

  .collection-card__icon svg {
    width: 34px;
    height: 34px;
  }

  .collection-badge {
    width: 64px;
    height: 64px;
  }

  .collection-badge svg {
    width: 26px;
    height: 26px;
  }

  .collection-card__body {
    min-height: 250px;
    padding: 54px 24px 26px;
  }

  .collection-card__body h3 {
    font-size: 34px;
  }

  .collection-card__body p {
    min-height: auto;
    font-size: 15px;
  }

  .collection-card__button {
    min-height: 54px;
    padding-inline: 20px;
    font-size: 13px;
  }

  .collections-features {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .collections-feature,
  .collections-feature:nth-child(3) {
    border-left: 0;
  }

  .collections-feature + .collections-feature {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .collections-feature {
    grid-template-columns: 62px 1fr;
    min-height: auto;
    gap: 18px;
    padding: 20px;
  }

  .collections-feature > span {
    width: 58px;
    height: 58px;
  }

  .collections-feature svg {
    width: 36px;
    height: 36px;
  }

  .collections-feature h3 {
    font-size: 14px;
  }

  .collections-feature p {
    font-size: 14px;
  }

  .benefits-showcase {
    padding: 62px 18px 54px;
  }

  .benefits-showcase__image {
    background-position: 64% top;
  }

  .benefits-showcase__shade {
    background:
      linear-gradient(90deg, rgba(4, 5, 5, 0.96) 0%, rgba(4, 5, 5, 0.78) 64%, rgba(4, 5, 5, 0.38) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.44) 44%, rgba(0, 0, 0, 0.91) 100%);
  }

  .benefits-showcase__content {
    gap: 30px;
  }

  .benefits-heading h2 {
    max-width: 350px;
    font-size: clamp(36px, 10vw, 44px);
  }

  .benefits-heading p {
    max-width: 350px;
    font-size: 17px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    grid-template-columns: 68px 1fr;
    justify-items: start;
    align-items: center;
    min-height: auto;
    padding: 20px;
    text-align: left;
  }

  .benefit-card > * {
    min-width: 0;
  }

  .benefit-card__icon {
    grid-row: span 2;
    width: 58px;
    height: 58px;
  }

  .benefit-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .benefit-card h3 {
    margin: 0 0 7px;
  }

  .benefit-metrics {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(3) {
    border-left: 0;
  }

  .metric + .metric {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .metric {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 20px;
  }

  .metric__icon {
    width: 58px;
    height: 58px;
  }

  .metric__icon svg {
    width: 30px;
    height: 30px;
  }

  .metric strong {
    font-size: 34px;
  }

  .process-showcase {
    padding: 62px 18px 54px;
  }

  .process-showcase__image {
    background-position: 64% top;
  }

  .process-showcase__shade {
    background:
      linear-gradient(90deg, rgba(4, 5, 5, 0.96) 0%, rgba(4, 5, 5, 0.82) 62%, rgba(4, 5, 5, 0.48) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.92) 100%);
  }

  .process-heading h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .process-heading p {
    max-width: 350px;
    font-size: 17px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 76px;
    margin-top: 92px;
  }

  .process-step {
    min-height: auto;
    padding: 70px 22px 28px;
  }

  .process-step__icon {
    top: -55px;
    width: 94px;
    height: 94px;
  }

  .process-step__icon svg {
    width: 44px;
    height: 44px;
  }

  .process-summary {
    padding: 22px;
  }

  .process-summary__items {
    grid-template-columns: 1fr;
  }

  .process-summary__item,
  .process-summary__item:nth-child(3) {
    border-left: 0;
  }

  .process-summary__item + .process-summary__item {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .process-summary__item {
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 18px 0;
  }

  .process-summary__item > span {
    width: 56px;
    height: 56px;
  }

  .process-summary__item svg {
    width: 30px;
    height: 30px;
  }

  .process-phone {
    align-items: flex-start;
    gap: 16px;
  }

  .process-phone > svg {
    width: 34px;
    height: 34px;
  }

  .process-button {
    max-width: 342px;
    min-height: 62px;
    padding-inline: 26px;
  }

  .reviews-showcase {
    min-height: auto;
    padding: 62px 18px 60px;
  }

  .reviews-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .reviews-heading .eyebrow--center {
    justify-content: flex-start;
  }

  .reviews-heading h2 {
    max-width: 350px;
    font-size: clamp(39px, 11vw, 52px);
    line-height: 0.94;
  }

  .reviews-heading p:last-child {
    max-width: 350px;
    margin-left: 0;
    font-size: 17px;
  }

  .reviews-heading__dash {
    display: none;
  }

  .review-cards {
    gap: 22px;
  }

  .review-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .review-card img {
    height: 310px;
    min-height: 310px;
  }

  .review-card__content {
    padding: 28px 24px 30px;
  }

  .review-stars {
    font-size: 20px;
  }

  .review-quote {
    margin-top: 26px;
    font-size: 56px;
  }

  .review-card__content p {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .reviews-trust {
    gap: 18px;
    margin-top: 34px;
  }

  .reviews-avatars img {
    width: 50px;
    height: 50px;
  }

  .reviews-trust p {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .reviews-trust strong {
    font-size: 38px;
  }

  .reviews-trust span {
    font-size: 15px;
  }

  .faq-showcase {
    min-height: auto;
    padding: 62px 18px 60px;
  }

  .faq-showcase__image {
    background-position: 18% top;
    opacity: 0.5;
  }

  .faq-showcase__shade {
    background:
      linear-gradient(90deg, rgba(4, 5, 5, 0.92), rgba(4, 5, 5, 0.88)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.86));
  }

  .faq-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .faq-heading .eyebrow--center {
    justify-content: flex-start;
  }

  .faq-heading h2 {
    max-width: 350px;
    font-size: clamp(39px, 11vw, 52px);
  }

  .faq-heading p:last-child {
    max-width: 350px;
    margin-left: 0;
    font-size: 17px;
  }

  .faq-grid {
    gap: 14px;
  }

  .faq-card {
    grid-template-columns: 62px 1fr 26px;
    gap: 16px;
    min-height: auto;
    padding: 18px 16px;
  }

  .faq-card__icon {
    width: 56px;
    height: 56px;
  }

  .faq-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .faq-card h3 {
    font-size: 16px;
  }

  .faq-card p {
    font-size: 14px;
  }

  .faq-contact {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    margin-top: 24px;
    padding: 20px;
  }

  .faq-contact__icon,
  .faq-contact__link span {
    width: 54px;
    height: 54px;
  }

  .faq-contact__icon svg,
  .faq-contact__link span svg {
    width: 30px;
    height: 30px;
  }

  .faq-contact strong {
    font-size: 17px;
  }

  .faq-contact p span {
    font-size: 14px;
  }

  .faq-contact__link {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    font-size: 14px;
  }

  .application-showcase {
    padding: 62px 18px 60px;
  }

  .application-info {
    text-align: left;
  }

  .application-info .eyebrow {
    justify-content: flex-start;
  }

  .application-info h2 {
    max-width: 350px;
    font-size: clamp(39px, 11vw, 52px);
  }

  .application-lead {
    max-width: 350px;
    margin-left: 0;
    font-size: 17px;
  }

  .application-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    margin-top: 34px;
  }

  .application-steps span {
    width: 82px;
    height: 82px;
  }

  .application-steps svg {
    width: 42px;
    height: 42px;
  }

  .application-steps h3 {
    margin-top: 16px;
    font-size: 15px;
  }

  .application-steps p {
    font-size: 14px;
  }

  .application-guide {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
    padding: 18px;
  }

  .application-guide img {
    height: 180px;
  }

  .application-guide h3 {
    font-size: 29px;
  }

  .application-guide strong {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .application-form {
    gap: 14px;
    padding: 28px 20px 0;
    border-radius: 12px;
  }

  .application-form__icon {
    width: 76px;
    height: 76px;
  }

  .application-form__icon svg {
    width: 42px;
    height: 42px;
  }

  .application-form h3 {
    font-size: 30px;
  }

  .application-form > p {
    font-size: 15px;
  }

  .form-field {
    min-height: 60px;
    padding-inline: 16px;
  }

  .application-submit {
    min-height: 64px;
    padding-inline: 24px;
    font-size: 15px;
  }

  .application-call {
    grid-template-columns: 54px 1fr;
    gap: 16px;
    margin-inline: -20px;
    padding: 24px 20px 28px;
    font-size: 15px;
  }

  .application-call span {
    width: 54px;
    height: 54px;
  }

  .application-call svg {
    width: 30px;
    height: 30px;
  }

  .application-call strong {
    font-size: 26px;
  }

  .footer-cta {
    min-height: auto;
    padding: 58px 18px;
  }

  .footer-cta__image {
    background-position: 70% center;
  }

  .footer-cta__shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0.78)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.78));
  }

  .footer-cta__inner {
    text-align: left;
  }

  .footer-crest {
    margin-left: 0;
  }

  .footer-cta h2 {
    max-width: 350px;
    font-size: clamp(39px, 11vw, 52px);
  }

  .footer-cta__inner p {
    max-width: 350px;
    margin-left: 0;
    font-size: 17px;
  }

  .footer-consult {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding-left: 0;
    border-left: 0;
  }

  .footer-consult > span {
    width: 54px;
    height: 54px;
  }

  .footer-consult svg {
    width: 28px;
    height: 28px;
  }

  .footer-consult__button {
    min-height: 62px;
    padding-inline: 20px;
    font-size: 13px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 18px 34px;
  }

  .footer-column,
  .footer-reasons {
    padding-left: 0;
    border-left: 0;
  }

  .footer-brand {
    justify-items: start;
    text-align: left;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .footer-reasons {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .footer-reasons > div,
  .footer-reasons > div:nth-of-type(3),
  .footer-reasons > div:nth-of-type(4) {
    padding-inline: 0;
    border-left: 0;
  }

  .footer-reasons > div + div {
    border-top: 1px solid rgba(231, 189, 106, 0.18);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    margin-inline: 18px;
    text-align: left;
  }

  .footer-bottom > span {
    display: none;
  }

  .footer-bottom nav {
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .blog-shell,
  .single-shell {
    padding: 48px 18px 64px;
  }

  .blog-hero {
    justify-items: start;
    text-align: left;
  }

  .blog-hero .eyebrow {
    justify-content: flex-start;
  }

  .blog-hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .blog-hero__lead {
    margin-left: 0;
    font-size: 16px;
  }

  .blog-categories {
    justify-content: flex-start;
    gap: 9px;
  }

  .blog-categories a {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .not-found-shell {
    min-height: auto;
    padding: 50px 18px 68px;
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.95) 0%, rgba(5, 6, 6, 0.78) 48%, rgba(5, 6, 6, 0.96) 100%),
      image-set(
        url("./assets/hero-graduation-mobile.avif") type("image/avif"),
        url("./assets/hero-graduation-mobile.webp") type("image/webp"),
        url("./assets/hero-graduation.webp") type("image/webp"),
        url("./assets/hero-graduation.png") type("image/png")
      ) 62% center / cover no-repeat,
      #050606;
  }

  .not-found {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .not-found h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.94;
  }

  .not-found__lead {
    max-width: 360px;
    font-size: 16px;
  }

  .not-found__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .not-found__actions .button,
  .not-found__link {
    width: 100%;
    min-height: 58px;
  }

  .not-found__code {
    width: min(100%, 300px);
    min-height: 150px;
    font-size: clamp(64px, 20vw, 92px);
  }

  .blog-card {
    grid-template-rows: 230px 1fr;
    min-height: auto;
  }

  .blog-card__body {
    padding: 24px;
  }

  .blog-card h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .single-hero {
    gap: 18px;
  }

  .single-hero__copy {
    min-height: auto;
    padding: 26px 22px;
  }

  .single-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .single-hero__media {
    min-height: 280px;
  }

  .single-content {
    padding: 24px 20px;
  }

  .single-nav {
    grid-template-columns: 1fr;
  }

  .single-nav a {
    min-height: auto;
    font-size: 24px;
  }

  .single-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .single-cta h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .single-cta .button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 460px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .stat + .stat,
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip ul {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

