:root {
  --bg: #f3f4f2;
  --surface: #ffffff;
  --surface-soft: #efefec;
  --surface-strong: #e5e6e2;
  --ink: #11120f;
  --text: #343632;
  --muted: #636660;
  --line: #dedfd9;
  --accent: #ffd100;
  --accent-dark: #d6a900;
  --orange: #f2a900;
  --graphite: #3d4442;
  --graphite-deep: #161815;
  --glass: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 18px 50px rgba(17, 18, 15, 0.08);
  --shadow-strong: 0 28px 80px rgba(17, 18, 15, 0.18);
  --radius: 8px;
  --radius-large: 18px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 209, 0, 0.045), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
  font-family:
    "Nunito Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(17, 18, 15, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 18, 15, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 58%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

main {
  overflow-x: clip;
}

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

.section-pad {
  padding: 108px 0;
}

.section-pad:not(.hero):not(.audience):not(.process):not(.program):not(.why):not(.faq):not(.section-cta):not(.form-section):not(.practice) {
  position: relative;
}

.section-pad:not(.hero):not(.audience):not(.process):not(.program):not(.why):not(.faq):not(.section-cta):not(.form-section):not(.practice)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 48px));
  height: 1px;
  background: var(--line);
}


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

h1,
h2,
h3,
legend,
summary,
button[type="submit"] {
  font-family:
    "Roboto Condensed", "Arial Narrow", "Bahnschrift Condensed", "Segoe UI",
    Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  color: #fff;
  font-size: clamp(74px, 5.8vw, 96px);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0 auto 28px;
  overflow-wrap: normal;
}

h1 span {
  display: inline-block;
}

h2 {
  color: var(--ink);
  font-size: 52px;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 24px;
}

h3 {
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 14px;
}

p {
  margin-bottom: 18px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.lead {
  max-width: 810px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.45;
  margin: 0 auto 34px;
  overflow-wrap: anywhere;
}

.lead strong {
  color: var(--accent);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.muted,
.note {
  color: var(--muted);
}

.section-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-number::before,
.section-number::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background: #fff;
}

.hero .container {
  width: 100%;
  max-width: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(68px, 10vh, 132px) clamp(24px, 5vw, 96px)
    clamp(38px, 7vh, 82px);
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 clamp(18px, 2.4vw, 42px) clamp(18px, 2.4vw, 42px);
  background: var(--graphite-deep);
  box-shadow: none;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 18, 15, 0.48), rgba(17, 18, 15, 0.76)),
    radial-gradient(circle at 50% 42%, rgba(255, 209, 0, 0.2), transparent 26%);
}

.hero-grid::after {
  content: "SUNSAY NRG";
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.08);
  font-family:
    "Roboto Condensed", "Arial Narrow", "Bahnschrift Condensed", "Segoe UI",
    Arial, sans-serif;
  font-size: clamp(92px, 11.8vw, 320px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.hero-grid > *,
.split > *,
.practice-grid > *,
.role-grid > *,
.why-grid > *,
.form-layout > * {
  min-width: 0;
}

.hero-logo {
  position: absolute;
  top: clamp(24px, 4vh, 44px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: clamp(150px, 18vw, 220px);
}

.hero-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 48px));
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px;
  align-items: center;
  max-width: 1210px;
  margin: 50px auto 24px;
}

.hero-step {
  position: relative;
  min-height: 0;
}

.step-tab {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  min-width: 290px;
  max-width: calc(100% - 44px);
  margin: 0 0 -2px 0;
  padding: 8px 20px 9px;
  border: 2px solid var(--accent);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: #171815;
  color: #fff;
  font-family:
    "Roboto Condensed", "Arial Narrow", "Bahnschrift Condensed", "Segoe UI",
    Arial, sans-serif;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.step-tab span {
  display: inline-grid;
  place-items: center;
  min-width: 74px;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 16px;
}

.step-tab strong {
  color: #fff;
  font-size: 19px;
  letter-spacing: 0.02em;
}

.step-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(0, 0.92fr);
  gap: 18px;
  align-items: center;
  min-height: 152px;
  padding: 24px 22px 16px;
  border: 2px solid var(--accent);
  border-radius: 0 16px 16px 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.step-body::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 92px;
  background: rgba(17, 18, 15, 0.24);
}

.step-main {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.step-icon,
.detail-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
}

.step-icon {
  width: 78px;
  height: 78px;
}

.material-symbols-rounded {
  display: block;
  color: currentColor;
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 48;
}

.step-icon .material-symbols-rounded {
  font-size: 42px;
}

.detail-icon .material-symbols-rounded {
  font-size: 24px;
  font-variation-settings:
    "FILL" 0,
    "wght" 600,
    "GRAD" 0,
    "opsz" 24;
}

.step-date {
  display: grid;
  gap: 6px;
  justify-items: start;
  text-align: left;
}

.step-date strong {
  color: var(--ink);
  font-family:
    "Roboto Condensed", "Arial Narrow", "Bahnschrift Condensed", "Segoe UI",
    Arial, sans-serif;
  font-size: clamp(40px, 3.15vw, 52px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.step-date span {
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}

.step-details {
  display: grid;
  gap: 12px;
}

.step-details p {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 750;
  line-height: 1.15;
  text-align: left;
}

.step-details strong {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.detail-icon {
  width: 42px;
  height: 42px;
}

.detail-icon svg {
  stroke-width: 2.5;
}

.hero .note {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.74);
  transform: translateY(-12px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 0;
  box-shadow: none;
}

.hero-media::after {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
}

.audience .split {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
}

.audience .split > div:first-child {
  position: relative;
}

.audience .section-number {
  position: absolute;
  left: 0;
  top: -36px;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack > p:not(.section-number),
.section-intro p:not(.section-number),
.role-copy p:not(.section-number),
.form-intro p:not(.section-number) {
  color: var(--text);
  font-size: 18px;
  line-height: 1.62;
}

.priority-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0;
}

.priority-list div,
.benefits article,
.module-grid article,
.requirements-grid article,
.work-card {
  background: var(--surface);
  border: 1px solid rgba(17, 18, 15, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.priority-list div {
  position: relative;
  min-height: 206px;
  padding: 24px 22px;
  overflow: hidden;
}

.priority-list div::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
}

.priority-list span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 42px;
}

.priority-list p {
  color: var(--ink);
  font-family:
    "Roboto Condensed", "Arial Narrow", "Bahnschrift Condensed", "Segoe UI",
    Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0;
  overflow-wrap: anywhere;
  hyphens: manual;
}


.section-intro {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-intro.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

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

.learning-panel {
  position: relative;
  display: grid;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.learning-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(17, 18, 15, 0.08);
  border-radius: inherit;
}

.panel-image {
  margin: 0;
}

.panel-image img {
  height: 100%;
  object-fit: cover;
}

.panel-copy {
  padding: 34px;
}

.panel-copy h3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.panel-copy h3::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
}

.panel-copy p,
.panel-copy li {
  color: var(--text);
  font-size: 16px;
  line-height: 1.62;
}

.panel-copy ul,
.work-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.panel-copy li {
  position: relative;
  padding-left: 19px;
}

.panel-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section-summary {
  margin: 28px 0 0;
  padding: 24px 28px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(255, 209, 0, 0.07);
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 34px rgba(214, 169, 0, 0.12);
}

.process {
  position: relative;
  overflow: clip;
  border-radius: 0 0 clamp(18px, 2.4vw, 42px) clamp(18px, 2.4vw, 42px);
  background:
    radial-gradient(circle at 76% 10%, rgba(255, 209, 0, 0.36), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255, 209, 0, 0.16), transparent 32%),
    linear-gradient(135deg, #343d3c 0%, #232825 52%, #837b20 100%);
}

.process::before {
  content: "";
  position: absolute;
  inset: -120px;
  pointer-events: none;
  background: url("./assets/images/pattern-solar-wind-white.png") center / cover no-repeat;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.process > *,
.why > * {
  position: relative;
  z-index: 1;
}

.process h2,
.process h3,
.why h2,
.why h3 {
  color: #fff;
}

.process h2,
.why h2 {
  max-width: 660px;
}

.process h2 {
  margin-top: -8px;
}

.process .section-number {
  position: absolute;
  left: 0;
  top: -34px;
  margin-bottom: 0;
}

.process .muted,
.why p:not(.section-number) {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  gap: 12px;
  counter-reset: steps;
  list-style: none;
}

.timeline li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: stretch;
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.timeline li::before {
  content: counter(steps, decimal-leading-zero);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--ink);
  font-family:
    "Roboto Condensed", "Arial Narrow", "Bahnschrift Condensed", "Segoe UI",
    Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.timeline span {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.disclaimer {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.process .disclaimer {
  background: rgba(255, 255, 255, 0.92);
}


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

.module-grid article {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
}

.module-grid article:nth-child(1),
.module-grid article:nth-child(8) {
  grid-column: span 2;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 209, 0, 0.24), transparent 26%),
    linear-gradient(145deg, #171815, #2f332d);
  color: #fff;
}

.module-grid article:nth-child(1) h3,
.module-grid article:nth-child(8) h3 {
  color: #fff;
}

.module-grid article:nth-child(1) p,
.module-grid article:nth-child(8) p {
  color: rgba(255, 255, 255, 0.72);
}

.module-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 30px;
}

.module-grid h3 {
  font-size: 23px;
}

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

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.practice-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
  align-items: stretch;
}

.practice figure,
.why figure,
.role-grid figure,
.form-intro figure {
  margin: 0;
}

.practice figure {
  height: 100%;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.practice img,
.role-grid img,
.form-intro img {
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-strong);
}

.practice figure > img {
  height: 100%;
  min-height: 520px;
  border-radius: 0;
  box-shadow: none;
  object-position: 76% 10%;
  transform: scale(1.28);
  transform-origin: right center;
}

.practice .copy-stack {
  padding: 34px;
  border-radius: var(--radius-large);
  background: var(--surface);
  border: 1px solid rgba(17, 18, 15, 0.08);
  box-shadow: var(--shadow-soft);
}

.practice .section-number {
  margin-bottom: 10px;
}

.practice h2 {
  display: grid;
  gap: 6px;
  margin-bottom: 34px;
}

.practice h2 span,
.practice h2 small {
  display: block;
}

.practice h2 span {
  font-size: clamp(46px, 3.65vw, 56px);
  line-height: 0.88;
  white-space: nowrap;
}

.practice h2 small {
  color: var(--accent);
  font-size: clamp(29px, 2.35vw, 36px);
  font-weight: 900;
  line-height: 0.92;
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2311120f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 6.5 4.8 9 10 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 58%;
}

.practice .check-list {
  gap: 14px;
}

.practice .check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-left: 0;
}

.practice .check-list li::before {
  display: none;
}

.practice .check-list img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.practice .check-list span {
  min-width: 0;
}


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

.role-copy {
  padding: 56px;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 94% 12%, rgba(255, 209, 0, 0.22), transparent 24%),
    var(--graphite-deep);
  box-shadow: var(--shadow-strong);
}

.role-copy h2 {
  color: #fff;
}

.role-copy h2 {
  font-size: clamp(31px, 2.7vw, 36px);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.role-copy p:not(.section-number) {
  color: rgba(255, 255, 255, 0.76);
}

.role-grid img {
  object-position: 80% 50%;
}

.role-grid figure {
  height: 100%;
}

.role-grid figure > img {
  height: 100%;
  min-height: 310px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.work-card,
.requirements-grid article {
  padding: 34px;
}

.work-card {
  border-radius: var(--radius-large);
}

.work-card--full {
  grid-column: 1 / -1;
}

.work-card ul {
  counter-reset: work-item;
}

.work-card li {
  counter-increment: work-item;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.45;
}

.work-card li::before {
  content: counter(work-item, decimal-leading-zero);
  color: var(--accent);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2ch;
}

.requirements-grid article:first-child {
  background: var(--ink);
}

.requirements-grid article:first-child h3,
.requirements-grid article:first-child li {
  color: #fff;
}

.requirements-grid article:first-child .check-list li::before {
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2311120f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 6.5 4.8 9 10 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 58%;
}

.requirements-grid .check-list {
  gap: 13px;
}

.requirements-grid .check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-left: 0;
}

.requirements-grid .check-list li::before {
  display: none;
}

.requirements-grid .check-list img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.requirements-grid .check-list span {
  min-width: 0;
}

.requirements-grid article:nth-child(2) {
  background: var(--accent);
  border-color: rgba(17, 18, 15, 0.08);
  box-shadow: 0 24px 70px rgba(214, 169, 0, 0.22);
}

.requirements-grid article:nth-child(2) h3,
.requirements-grid article:nth-child(2) li {
  color: var(--ink);
}

.why {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 clamp(18px, 2.4vw, 42px) clamp(18px, 2.4vw, 42px);
  background:
    linear-gradient(180deg, rgba(30, 33, 30, 0.72), rgba(30, 33, 30, 0.78)),
    url("./assets/images/sunsay-team.webp") center 58% / cover;
}

.why-grid {
  min-height: 520px;
  padding-bottom: 88px;
}

.why figure {
  display: none;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: -68px;
}

.benefits article {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  contain: paint;
  min-height: 146px;
  padding: 24px 58px 24px 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.24) 0%,
    rgba(255, 255, 255, 0.09) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
  font-family:
    "Roboto Condensed", "Arial Narrow", "Bahnschrift Condensed", "Segoe UI",
    Arial, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  backface-visibility: hidden;
  transform: translateZ(0);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.58),
    inset 0 0 32px rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 6px 24px rgba(0, 0, 0, 0.2);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.benefits article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.05) 48%,
    transparent 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

.benefits article::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
}

.benefits article:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.14) 100%
  );
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.7),
    inset 0 0 36px rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 18px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px) translateZ(0);
}

.form-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(244, 244, 242, 0.42), rgba(244, 244, 242, 0.94)),
    url("./assets/images/training-office.webp") center / cover;
}

.form-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 120px;
  transition: top 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-intro {
  position: sticky;
  top: 120px;
  padding: 46px;
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  transition: top 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  height: min(740px, calc(100svh - 144px));
  overflow: clip;
}

.form-intro figure {
  position: relative;
  margin-top: 24px;
  flex: 1 1 auto;
  min-height: 80px;
  border-radius: var(--radius-large);
  overflow: hidden;
}

.form-intro img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  box-shadow: none;
}

.application-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

fieldset {
  min-width: 0;
  border: 1px solid rgba(17, 18, 15, 0.08);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  overflow: hidden;
}

legend {
  float: left;
  width: 100%;
  padding: 0 0 20px;
  color: var(--ink);
  font-weight: 900;
  font-size: 25px;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 8px;
  color: #3d4038;
  font-size: 14px;
  font-weight: 750;
  margin-top: 16px;
  clear: left;
}

select:has(option[value=""]:checked) {
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: #eeeeec;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
  padding: 14px 15px;
  outline: none;
  transition:
    box-shadow 160ms ease,
    background 160ms ease;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2373766f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
  transition: box-shadow 160ms ease, background-color 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 92px;
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent);
}

.form-help {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.consents {
  display: grid;
  gap: 12px;
}

.consents label {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  margin: 0;
  font-weight: 500;
}

.consents input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

button[type="submit"] {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

button[type="submit"]:hover {
  background: #ffe15c;
  box-shadow: 0 14px 34px rgba(214, 169, 0, 0.24);
  transform: translateY(-1px);
}

.floating-cta {
  position: fixed;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(17, 18, 15, 0.28);
  animation: ctaPulse 2.4s ease-in-out infinite;
  isolation: isolate;
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.floating-cta--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.floating-cta:hover {
  background: #ffe15c;
  box-shadow: 0 22px 58px rgba(17, 18, 15, 0.32);
  transform: translateY(-2px);
}

.floating-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.application-form {
  scroll-margin-top: 28px;
}

[hidden] {
  display: none !important;
}

.form-col {
  position: relative;
}

.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 32px;
  text-align: center;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.form-success-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.form-success h3 {
  margin: 0;
  font-size: 22px;
}

.form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 360px;
}

.field-group {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  clear: left;
}

.field-label {
  color: #3d4038;
  font-size: 14px;
  font-weight: 750;
}

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

.choice {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-height: 48px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(17, 18, 15, 0.08);
  border-radius: var(--radius);
  background: #eeeeec;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.28;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.choice:hover {
  background: #fff;
  border-color: rgba(17, 18, 15, 0.18);
}

.choice:has(input:checked) {
  background: rgba(255, 209, 0, 0.18);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.choice input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.choice input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.choice input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  padding: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  accent-color: var(--accent);
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

@keyframes ctaPulseRing {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.55); opacity: 0; }
}

.floating-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--accent);
  animation: ctaPulseRing 2.8s ease-out infinite;
  z-index: -1;
  pointer-events: none;
}

.req {
  color: var(--accent);
  font-weight: 900;
  font-size: 11px;
  vertical-align: super;
  line-height: 1;
}

.form-status {
  display: none;
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  text-align: center;
}

.form-status:not(:empty) {
  display: block;
}


.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}

details {
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(17, 18, 15, 0.06);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  list-style: none;
  padding: 22px 24px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  flex-shrink: 0;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  background-image:
    linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink));
  background-size: 10px 2px, 2px 10px;
  background-repeat: no-repeat;
  background-position: center, center;
}

details[open] summary::after {
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 10px 2px;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.section-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 0%, rgba(255, 209, 0, 0.14) 0%, transparent 60%),
    linear-gradient(160deg, #1a1c18 0%, #11120f 100%);
}

.cta-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255, 209, 0, 0.16);
  border: 1px solid rgba(255, 209, 0, 0.36);
  color: var(--accent);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-final-title {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  max-width: 600px;
}

.cta-final-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.cta-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 18px 40px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(214, 169, 0, 0.32);
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.cta-final-btn:hover {
  background: #ffe15c;
  box-shadow: 0 20px 56px rgba(214, 169, 0, 0.44);
  transform: translateY(-2px);
}

.cta-final-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

@media (hover: hover) {
  .timeline li {
    transition:
      transform 180ms ease,
      border-color 180ms ease;
  }

  .timeline li:hover {
    transform: translateY(-3px);
  }

  .priority-list div,
  .learning-panel,
  .module-grid article,
  .role-copy,
  .role-grid figure,
  .work-card,
  .requirements-grid article,
  details {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      border-color 180ms ease;
  }

  .priority-list div:hover,
  .learning-panel:hover,
  .module-grid article:hover,
  .role-copy:hover,
  .role-grid figure:hover,
  .work-card:hover,
  .requirements-grid article:hover,
  details:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 70px rgba(17, 18, 15, 0.13);
  }

}

@media (max-width: 1100px) {
  .container {
    width: 900px;
    max-width: calc(100% - 44px);
  }

  h1 {
    font-size: clamp(46px, 5.4vw, 58px);
    margin-bottom: 22px;
  }

  h2 {
    font-size: 46px;
    overflow-wrap: normal;
  }

  .hero-grid {
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(92px, 12vh, 116px) 44px 132px;
    align-items: start;
  }

  .hero-logo {
    width: clamp(120px, 15vw, 154px);
  }

  .hero-facts {
    grid-template-columns: minmax(0, 640px);
    justify-content: center;
    gap: 36px;
    margin-top: 36px;
  }

  .hero .lead {
    font-size: 18px;
    line-height: 1.35;
  }

  .step-body {
    min-height: 132px;
    padding: 18px 20px 14px;
  }

  .step-main {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
  }

  .step-icon {
    width: 68px;
    height: 68px;
  }

  .step-icon .material-symbols-rounded {
    font-size: 38px;
  }

  .step-date strong {
    font-size: clamp(38px, 3.4vw, 46px);
  }

  .step-date span {
    font-size: 17px;
  }

  .step-details {
    gap: 10px;
  }

  .step-details p {
    font-size: 14.5px;
  }

  .split,
  .practice-grid,
  .role-grid,
  .why-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

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

  .module-grid article:nth-child(1),
  .module-grid article:nth-child(8) {
    grid-column: span 1;
  }

  .process-copy,
  .form-intro {
    position: static;
    height: auto;
  }

  .audience .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  html,
  body,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .container {
    width: 520px;
    max-width: calc(100% - 32px);
  }

  .section-pad {
    padding: 68px 0;
  }

  h1 {
    font-size: 48px;
    line-height: 0.96;
  }

  .hero h1 span {
    display: block;
  }

  h2 {
    font-size: 30px;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  h3 {
    font-size: 21px;
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 16px;
  }

  h1,
  h2,
  h3,
  p,
  li,
  summary,
  .timeline span,
  .benefits article {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero .lead {
    width: min(280px, calc(100vw - 72px));
    max-width: 100%;
    text-wrap: auto;
  }

  section,
  .hero-grid,
  .split,
  .learning-panel,
  .practice-grid,
  .role-grid,
  .why-grid,
  .form-layout,
  .application-form,
  fieldset {
    max-width: 100%;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
  }

  .hero-grid {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(110px, 16vh, 140px) 18px 106px;
    align-items: start;
  }

  .hero-logo {
    width: clamp(110px, 28vw, 140px);
  }

  .hero-copy {
    width: min(480px, calc(100vw - 36px));
  }

  .hero-grid::after,
  .hero-media::after {
    display: none;
  }

  .learning-grid,
  .priority-list,
  .module-grid,
  .requirements-grid,
  .benefits,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 50px;
    width: min(520px, 100%);
    max-width: 100%;
    margin-top: 52px;
    margin-bottom: 22px;
  }

  .hero-step {
    min-height: 0;
    padding: 0;
  }

  .step-tab {
    left: auto;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
    margin: 0 0 -2px 0;
    padding: 8px 12px 9px;
    border-radius: 16px 16px 0 0;
  }

  .step-tab span {
    min-width: 67px;
    min-height: 24px;
    padding: 0 10px;
    font-size: 14px;
  }

  .step-tab strong {
    font-size: clamp(15px, 4.2vw, 17px);
    white-space: nowrap;
  }

  .step-body {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 26px 16px 17px;
  }

  .step-body::before {
    display: none;
  }

  .step-main {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .step-date {
    gap: 4px;
  }

  .step-date strong {
    font-size: clamp(38px, 13vw, 48px);
  }

  .step-date span {
    font-size: clamp(17px, 4.5vw, 20px);
  }

  .step-details {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .step-details p {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    font-size: 14px;
  }

  .detail-icon {
    width: 36px;
    height: 36px;
  }

  .priority-list p,
  .benefits article {
    font-size: 21px;
  }

  .split,
  .practice-grid,
  .role-grid,
  .why-grid,
  .form-layout {
    gap: 28px;
  }

  .audience .split {
    gap: 24px;
  }

  .audience .split > div:first-child {
    text-align: center;
  }

  .audience .section-number {
    position: static;
    justify-content: center;
    margin-bottom: 12px;
  }

  .audience h2 {
    max-width: 340px;
    margin-inline: auto;
    text-align: center;
  }

  .audience .copy-stack {
    gap: 20px;
  }

  .audience .copy-stack > p:not(.section-number) {
    max-width: 340px;
    margin-inline: auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.55;
  }

  .priority-list div {
    min-height: 0;
    padding: 20px 18px;
  }

  .priority-list div::before {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }

  .priority-list span {
    margin-bottom: 24px;
  }

  .priority-list p {
    font-size: 21px;
    line-height: 1.05;
  }

  .learning-panel {
    grid-template-rows: 220px 1fr;
  }

  .panel-copy,
  .practice .copy-stack,
  .role-copy,
  .form-intro,
  .work-card,
  .requirements-grid article {
    padding: 24px;
  }

  .role-copy h2 {
    font-size: clamp(26px, 7.5vw, 31px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .practice h2 {
    gap: 5px;
    margin-bottom: 26px;
  }

  .practice h2 span {
    font-size: clamp(31px, 8.4vw, 38px);
    line-height: 0.92;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    white-space: normal;
  }

  .practice h2 small {
    font-size: clamp(24px, 6.7vw, 30px);
    line-height: 0.96;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .practice img,
  .role-grid img {
    height: 310px;
  }

  .role-grid figure > img {
    height: 310px;
    min-height: 310px;
  }

  .practice figure > img {
    height: 310px;
    min-height: 310px;
    transform: none;
  }

  .timeline li {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 78px;
  }

  .timeline span {
    font-size: 17px;
  }

  .why-grid {
    min-height: auto;
  }

  .why-grid.container {
    max-width: calc(100% - 32px);
  }

  .benefits {
    margin-top: 28px;
  }

  .floating-cta {
    right: 16px;
    bottom: 6px;
    left: 16px;
    min-height: 44px;
    padding: 0 18px;
    font-size: clamp(13px, 3.5vw, 15px);
  }

  fieldset {
    padding: 20px 16px;
  }

  summary {
    padding: 18px;
    font-size: 17px;
  }

  details p {
    padding: 0 18px 18px;
  }
}

@media (max-width: 600px) {
  .hero-facts {
    width: min(360px, calc(100vw - 28px));
  }

  .step-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .step-details p {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 6px;
    align-items: center;
    min-width: 0;
    padding: 8px 7px;
    border-radius: 10px;
    background: rgba(255, 209, 0, 0.12);
    font-size: 11.8px;
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .detail-icon {
    width: 24px;
    height: 24px;
  }

  .detail-icon .material-symbols-rounded {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 30px;
    line-height: 0.98;
  }

  .hero-grid {
    padding-inline: 16px;
  }

  .hero-copy {
    width: min(330px, calc(100vw - 44px));
  }

  .hero-facts {
    width: min(330px, calc(100vw - 44px));
  }

  .hero-step {
    padding: 0;
  }

  .step-tab {
    left: auto;
    max-width: 100%;
    margin-left: 0;
    gap: 8px;
    padding-inline: 10px;
  }

  .step-body {
    padding: 28px 14px 16px;
  }

  .step-tab span {
    min-width: 62px;
    font-size: 13px;
  }

  .step-tab strong {
    font-size: 15px;
  }

  .step-main {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .step-date strong {
    font-size: clamp(36px, 12.5vw, 44px);
  }

  .step-details {
    grid-template-columns: 1fr;
  }

  .hero .lead {
    width: min(280px, calc(100vw - 72px));
    max-width: 100%;
  }

  .container {
    width: 330px;
    max-width: calc(100% - 44px);
  }

  .why-grid.container {
    width: 330px;
    max-width: calc(100% - 44px);
  }
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #c0392b;
  font-size: 13px;
  line-height: 1.35;
}

.field-invalid {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.32) !important;
  background: #fff !important;
}

.form-success[hidden] {
  display: none !important;
}

.form-success {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 56px 34px;
  gap: 20px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.form-success h3 {
  font-size: 28px;
  margin-bottom: 0;
}

.form-success p {
  color: var(--muted);
  font-size: 17px;
  max-width: 360px;
  margin: 0;
}

@media (max-height: 680px) and (min-width: 1101px) {
  .hero-grid {
    align-items: start;
    padding-top: clamp(96px, 16vh, 118px);
    padding-bottom: 118px;
  }

  .hero-logo {
    top: clamp(16px, 3vh, 24px);
    width: clamp(122px, 12vw, 162px);
  }

  h1 {
    font-size: clamp(54px, 5vw, 76px);
    line-height: 0.88;
    margin-bottom: 20px;
  }

  .hero .lead {
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.28;
  }

  .hero-facts {
    margin-top: 34px;
  }

  .form-intro figure {
    display: none;
  }
  .form-intro {
    height: auto;
  }
}

@media (max-height: 620px) and (min-width: 1101px) {
  .hero-grid {
    padding-top: 88px;
    padding-bottom: 104px;
  }

  .hero-logo {
    top: 14px;
    width: clamp(112px, 10vw, 142px);
  }

  h1 {
    font-size: clamp(48px, 4.5vw, 66px);
    margin-bottom: 16px;
  }

  .hero .lead {
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.22;
  }

  .hero-facts {
    margin-top: 30px;
  }
}

@media (max-height: 680px) and (max-width: 1100px) {
  .hero-grid {
    align-items: start;
    padding-top: clamp(86px, 15vh, 104px);
  }

  .hero-logo {
    top: 14px;
    width: clamp(102px, 16vw, 132px);
  }

  h1 {
    font-size: clamp(36px, 6vw, 52px);
    line-height: 0.9;
    margin-bottom: 16px;
  }

  .hero .lead {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.22;
  }

  .hero-facts {
    margin-top: 30px;
  }
}

@media (max-width: 1100px) {
  .form-intro figure {
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
    min-height: unset;
  }
}

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