.gm-content {
  font-family: "Inter", sans-serif;
}

/* Hero */
.gm-hero {
  padding: 92px clamp(24px, 3.4vw, 64px) 80px;
  background: var(--black);
  color: #fff;
}

.gm-back {
  display: inline-block;
  margin-bottom: 22px;
  color: oklch(70% 0.05 85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.gm-eyebrow,
.gm-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 16px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gm-badge-outline {
  border-color: var(--gold);
}

.gm-hero h1 {
  max-width: 900px;
  margin: 0 0 22px;
  font-family: "Anton", sans-serif;
  font-size: clamp(34px, 5.6vw, 62px);
  line-height: 1.04;
  text-transform: uppercase;
}

.gm-hero-sub {
  max-width: 620px;
  margin: 0 0 34px;
  color: oklch(80% 0.006 250);
  font-size: 18px;
  line-height: 1.6;
}

.gm-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.gm-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.gm-stat span {
  font-family: "Anton", sans-serif;
  font-size: 30px;
  color: var(--gold);
}

.gm-stat small {
  max-width: 130px;
  color: oklch(72% 0.006 250);
  font-size: 14px;
  line-height: 1.35;
}

/* Generic section */
.gm-section {
  padding: 90px clamp(24px, 3.4vw, 64px);
}

.gm-section-head {
  max-width: 640px;
  margin: 0 0 44px;
}

.gm-section-head-center {
  max-width: 840px;
  margin: 0 auto 40px;
  text-align: center;
}

.gm-section-head-dark {
  color: #fff;
}

.gm-num {
  margin-bottom: 10px;
  font-family: "Anton", sans-serif;
  font-size: 15px;
  color: oklch(58% 0.15 78);
  letter-spacing: 2px;
}

.gm-num-gold {
  color: var(--gold);
}

.gm-section-head h2 {
  margin: 0 0 12px;
  font-family: "Anton", sans-serif;
  font-size: clamp(26px, 3.6vw, 38px);
  text-transform: uppercase;
}

.gm-section-head-dark h2 {
  color: #fff;
  font-size: clamp(26px, 3.8vw, 40px);
}

.gm-section-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: oklch(44% 0.006 250);
}

.gm-section-head-dark p {
  color: oklch(78% 0.006 250);
  font-size: 16.5px;
}

/* Cases */
.gm-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.gm-case {
  display: block;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 2px solid oklch(90% 0.006 250);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 26px -20px rgb(0 0 0 / 30%);
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.gm-case.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.gm-case:hover {
  transform: translateY(-4px);
}

.gm-case.active {
  border-color: var(--gold);
  box-shadow: 0 22px 46px -22px oklch(58% 0.15 78 / 55%);
}

.gm-case img {
  display: block;
  width: 100%;
  height: auto;
}

.gm-case-body {
  padding: 22px 24px 26px;
}

.gm-case-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-bottom: 8px;
  border-radius: 50%;
  border: 2px solid oklch(78% 0.006 250);
  background: transparent;
}

.gm-case.active .gm-case-dot {
  border-color: var(--gold);
  background: var(--gold);
}

.gm-case-body h3 {
  margin: 0 0 8px;
  font-family: "Anton", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.gm-case-body p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: oklch(46% 0.006 250);
}

.gm-case-measure {
  font-size: 13.5px !important;
  line-height: 1.5;
  color: oklch(38% 0.09 78) !important;
  font-weight: 600;
  margin: 0 !important;
}

.gm-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 26px;
  padding: 22px 26px;
  background: var(--black);
  border-radius: 14px;
}

.gm-note span {
  font-family: "Anton", sans-serif;
  font-size: 18px;
  color: var(--gold);
  line-height: 1.2;
}

.gm-note p {
  margin: 0;
  color: oklch(82% 0.006 250);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Step rows */
.gm-step {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
  padding: 80px clamp(24px, 3.4vw, 64px);
  opacity: 0;
  transform: translateY(30px);
}

.gm-step.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.gm-step-light {
  background: var(--paper);
}

.gm-step-soft {
  background: oklch(92% 0.006 250);
}

.gm-step-reverse {
  flex-direction: row-reverse;
}

.gm-step-media {
  flex: 1 1 380px;
  min-width: 280px;
}

.gm-step-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid oklch(88% 0.006 250);
}

.gm-step-copy {
  flex: 1 1 340px;
  min-width: 280px;
}

.gm-num-small {
  font-size: 15px;
}

.gm-step-copy h2 {
  margin: 0 0 14px;
  font-family: "Anton", sans-serif;
  font-size: clamp(24px, 3.4vw, 36px);
  text-transform: uppercase;
}

.gm-step-copy > p {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.6;
  color: oklch(40% 0.006 250);
}

.gm-bullets div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-top: 1px solid oklch(88% 0.006 250);
}

.gm-bullets span:first-child {
  color: oklch(48% 0.13 76);
  font-weight: 800;
  font-size: 14px;
}

.gm-bullets span:last-child {
  font-size: 14.5px;
  line-height: 1.55;
  color: oklch(32% 0.006 250);
}

.gm-example {
  margin-top: 20px;
  padding: 18px 20px;
  background: oklch(92% 0.006 250);
  border-radius: 12px;
}

.gm-step-soft .gm-example {
  background: #fff;
}

.gm-example-label {
  margin-bottom: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: oklch(48% 0.13 76);
}

.gm-example p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: oklch(30% 0.006 250);
}

/* Gap infographic */
.gm-gap {
  padding: 100px clamp(24px, 3.4vw, 64px);
  background: var(--black);
}

.gm-gap-diagram {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.gm-gap-box {
  flex: 1 1 190px;
  min-width: 170px;
  padding: 24px;
  background: oklch(19% 0.006 90);
  border: 1px solid oklch(30% 0.006 250);
  border-radius: 14px;
}

.gm-gap-box-gold {
  background: var(--gold);
  border: none;
}

.gm-gap-label {
  margin-bottom: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: oklch(65% 0.006 250);
}

.gm-gap-box-gold .gm-gap-label {
  color: oklch(25% 0.05 80);
  font-weight: 800;
}

.gm-gap-value {
  font-family: "Anton", sans-serif;
  color: #fff;
  font-size: 26px;
  line-height: 1.3;
}

.gm-gap-value small {
  font-size: 15px;
  color: oklch(70% 0.006 250);
}

.gm-gap-box-gold .gm-gap-value {
  color: var(--black);
}

.gm-gap-box-gold .gm-gap-value small {
  color: var(--black);
}

.gm-gap-arrow {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 4px;
}

.gm-gap-minus {
  font-family: "Anton", sans-serif;
  color: var(--gold);
  font-size: 30px;
  animation: gmPulse 2s ease-in-out infinite;
}

@keyframes gmPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.gm-gap-arrow-note {
  margin-top: 4px;
  color: oklch(60% 0.006 250);
  font-size: 12px;
}

.gm-gap-explain {
  flex: 1 1 240px;
  min-width: 220px;
  margin: 0;
  color: oklch(80% 0.006 250);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Calculator */
.gm-calc {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 38px 34px;
  box-shadow: 0 30px 70px -34px rgb(0 0 0 / 28%);
}

.gm-calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.gm-calc-label {
  margin-bottom: 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: oklch(48% 0.13 76);
}

.gm-calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gm-calc-inputs input {
  width: 100%;
  padding: 13px 15px;
  border-radius: 8px;
  border: 1px solid oklch(85% 0.006 250);
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.gm-calc-inputs input:focus {
  border-color: var(--gold);
}

.gm-calc-note {
  margin: 2px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: oklch(55% 0.006 250);
}

.gm-calc-result {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid oklch(90% 0.006 250);
}

.gm-calc-empty {
  margin: 0;
  text-align: center;
  font-size: 14.5px;
  color: oklch(52% 0.006 250);
}

.gm-result-box {
  flex: 1 1 260px;
  padding: 24px;
  background: var(--black);
  border-radius: 14px;
  margin-bottom: 18px;
}

.gm-result-label {
  margin-bottom: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.gm-result-value {
  font-family: "Anton", sans-serif;
  color: #fff;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.2;
}

.gm-result-min {
  margin-top: 8px;
  color: oklch(68% 0.006 250);
  font-size: 13px;
}

.gm-warnings {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gm-warning {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 8px;
  border-left: 3px solid;
  font-size: 13.5px;
  line-height: 1.55;
  color: oklch(30% 0.006 250);
}

.gm-warning span:first-child {
  font-weight: 800;
  font-size: 14px;
}

.gm-warning-bad {
  background: oklch(94% 0.05 40);
  border-left-color: oklch(52% 0.18 32);
}

.gm-warning-bad span:first-child {
  color: oklch(52% 0.18 32);
}

.gm-warning-ok {
  background: oklch(94% 0.04 145);
  border-left-color: oklch(48% 0.12 150);
}

.gm-warning-ok span:first-child {
  color: oklch(48% 0.12 150);
}

/* Photos checklist */
.gm-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.gm-photo {
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid oklch(90% 0.006 250);
  border-radius: 10px;
  padding: 15px 16px;
  font-family: inherit;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.gm-photo.checked {
  background: oklch(97% 0.03 85);
  border-color: var(--gold);
}

.gm-photo-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 2px solid oklch(82% 0.006 250);
  background: transparent;
}

.gm-photo.checked .gm-photo-check {
  border-color: var(--gold);
  background: var(--gold);
  position: relative;
}

.gm-photo.checked .gm-photo-check::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
}

.gm-photo span:last-child {
  font-size: 14.5px;
  line-height: 1.45;
  color: oklch(28% 0.006 250);
}

.gm-photos-count {
  margin-top: 18px;
  font-size: 14px;
  color: oklch(48% 0.13 76);
  font-weight: 600;
}

/* Risks */
.gm-risks {
  padding: 100px clamp(24px, 3.4vw, 64px);
  background: var(--black);
}

.gm-risks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.gm-risk {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 18px 20px;
  background: oklch(19% 0.006 90);
  border: 1px solid oklch(28% 0.008 90);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
}

.gm-risk.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.gm-risk span:first-child {
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
}

.gm-risk span:last-child {
  color: oklch(82% 0.006 250);
  font-size: 14px;
  line-height: 1.55;
}

.gm-final {
  margin-top: 46px;
  text-align: center;
}

.gm-final h3 {
  margin: 0 0 14px;
  font-family: "Anton", sans-serif;
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
}

.gm-final p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: oklch(78% 0.006 250);
  font-size: 16px;
  line-height: 1.6;
}

.gm-final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.gm-cta-primary,
.gm-cta-secondary {
  padding: 16px 30px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gm-cta-primary {
  background: var(--gold);
  color: var(--black);
}

.gm-cta-primary:hover {
  transform: translateY(-3px);
}

.gm-cta-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 30px;
  font-weight: 700;
}

.gm-cta-secondary:hover {
  background: #fff;
  color: var(--black);
}

.gm-disclaimer {
  max-width: 640px;
  margin: 40px auto 0;
  color: oklch(52% 0.006 250);
  font-size: 12.5px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 820px) {
  .gm-hero {
    padding-top: 130px;
  }

  .gm-step,
  .gm-step-reverse {
    flex-direction: column;
  }
}
