:root {
  --ink: #101820;
  --navy: #082f4f;
  --navy-deep: #051f35;
  --yellow: #ffd51f;
  --yellow-soft: #fff1a4;
  --red: #d9271c;
  --red-dark: #aa1812;
  --cream: #fff8e3;
  --paper: #f3ead0;
  --white: #ffffff;
  --muted: #5c6570;
  --green: #26734d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

main,
#quarto-content,
.page-columns,
.content {
  width: 100% !important;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * A landing a nagyobb Quarto-oldal saját stílusai mellett is futhat.
 * Az egyedi hi- előtag és a teljes szélességű blokkok megakadályozzák,
 * hogy a webhely általános hero/section/button szabályai felülírják.
 */
.hi-deadline-bar,
.hi-hero,
.hi-value-strip,
.hi-section,
.hi-about-section,
.hi-offer-section,
.hi-guarantee-section,
.hi-final-cta,
.hi-footer {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.quarto-title-block,
#title-block-header {
  display: none;
}

.hi-page-width {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

h1,
h2 {
  color: var(--ink) !important;
  line-height: 1.08;
}

h1 {
  margin-bottom: 25px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.6rem, 7vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.55rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.25;
}

strong {
  font-weight: 900;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.hi-deadline-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: var(--red);
  border-bottom: 4px solid var(--ink);
}

.hi-deadline-inner {
  min-height: 58px;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hi-deadline-inner a {
  padding: 7px 13px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.hi-hero {
  position: relative;
  padding: 72px 0 82px;
  color: var(--ink) !important;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 248, 227, 0.96), rgba(255, 248, 227, 0.96)),
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(8, 47, 79, 0.05) 22px 44px);
  border-bottom: 7px solid var(--ink);
}

.hi-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 58px;
  align-items: center;
}

.hi-hero-copy > h2 {
  color: var(--ink) !important;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  font-weight: 900;
  line-height: 1.2;
}

.hi-hero-copy > p {
  max-width: 720px;
  color: var(--ink) !important;
  font-size: 1.06rem;
}

.hi-eyebrow,
.hi-section-label {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hi-eyebrow {
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.hi-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0 30px;
}

.hi-hero-facts span {
  position: static !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  opacity: 1 !important;
  padding: 11px 13px;
  color: var(--ink) !important;
  background: var(--white);
  border: 2px solid var(--ink);
  font-size: 0.87rem;
}

.hi-hero-facts strong {
  display: block;
  font-size: 1rem;
}

.hi-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 0.97rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hi-button:hover {
  transform: translate(6px, 6px);
  box-shadow: none;
}

.hi-button-primary {
  color: var(--white);
  background: var(--red);
}

.hi-button-primary:hover {
  color: var(--white);
  background: var(--red-dark);
}

.hi-button-yellow {
  color: var(--ink);
  background: var(--yellow);
}

.hi-button-yellow:hover {
  color: var(--ink);
  background: #ffe05b;
}

.hi-button-full {
  width: 100%;
}

.hi-micro-copy {
  display: block;
  max-width: 640px;
  margin-top: 15px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hi-calendar-wrap {
  position: relative;
  padding: 14px 8px 8px;
}

.hi-calendar {
  position: relative;
  padding: 25px 28px 36px;
  background: var(--white);
  border: 6px solid var(--ink);
  box-shadow: 14px 14px 0 var(--navy);
  text-align: center;
  transform: rotate(1deg);
}

.hi-calendar::before,
.hi-calendar::after {
  position: absolute;
  top: -18px;
  width: 26px;
  height: 26px;
  content: "";
  background: var(--ink);
  border: 5px solid var(--paper);
  border-radius: 50%;
}

.hi-calendar::before {
  left: 70px;
}

.hi-calendar::after {
  right: 70px;
}

.hi-calendar-top {
  color: var(--navy);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.03em;
}

.hi-calendar-day {
  margin-top: -8px;
  color: var(--navy);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(8rem, 16vw, 14rem);
  line-height: 0.95;
}

.hi-calendar-stamp {
  position: absolute;
  right: -28px;
  bottom: 34px;
  padding: 9px 17px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.9);
  border: 6px solid var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  transform: rotate(-8deg);
}

.hi-calendar-offer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3px;
  margin: -8px 26px 0;
  padding: 17px;
  color: var(--white);
  background: var(--navy);
  border: 4px solid var(--ink);
  box-shadow: 7px 7px 0 var(--yellow);
  text-align: center;
}

.hi-calendar-offer span,
.hi-calendar-offer small {
  font-size: 0.78rem;
  font-weight: 800;
}

.hi-calendar-offer strong {
  display: block;
  white-space: nowrap;
  color: var(--yellow);
  font-family: "Anton", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1.05;
}

.hi-value-strip {
  padding: 24px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.hi-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.hi-value-grid div {
  display: grid;
  gap: 2px;
}

.hi-value-grid strong {
  color: var(--yellow);
  font-size: 0.79rem;
}

.hi-value-grid span {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.78rem;
}

.hi-section {
  padding: 88px 0;
}

.hi-section-light {
  background: var(--white);
}

.hi-section-cream {
  background: var(--cream);
}

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

.hi-section-navy h2 {
  color: var(--white);
}

.hi-section-label-yellow {
  color: var(--yellow);
}

.hi-steps-grid,
.hi-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.hi-step-card,
.hi-benefit-card {
  padding: 27px 23px;
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--yellow);
}

.hi-step-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--ink);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.35rem;
}

.hi-step-card p,
.hi-benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.hi-decision-note {
  margin-top: 38px;
  padding: 22px 25px;
  background: var(--yellow-soft);
  border-left: 7px solid var(--red);
  font-size: 1.04rem;
}

.hi-proof-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 55px;
  align-items: center;
}

.hi-proof-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.hi-proof-image img {
  display: block;
  width: 100%;
  background: var(--white);
  border: 5px solid var(--ink);
  box-shadow: 11px 11px 0 var(--yellow);
}

.hi-image-caption {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

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

.hi-benefit-card {
  background: var(--white);
  box-shadow: 6px 6px 0 var(--navy);
}

.hi-grade-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 55px;
  align-items: center;
}

.hi-grade-copy ul {
  padding-left: 20px;
}

.hi-grade-callout {
  display: grid;
  gap: 5px;
  padding: 38px 28px;
  color: var(--white);
  background: var(--navy);
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--red);
  text-align: center;
  transform: rotate(1deg);
}

.hi-grade-callout span,
.hi-grade-callout small {
  font-size: 0.8rem;
  font-weight: 800;
}

.hi-grade-callout strong {
  color: var(--yellow);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.hi-about-section {
  padding: 85px 0;
  background: var(--paper);
}

.hi-about-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 55px;
  align-items: center;
}

.hi-about-photo {
  position: relative;
}

.hi-about-photo img {
  display: block;
  width: 100%;
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--navy);
}

.hi-experience {
  position: absolute;
  right: -22px;
  bottom: 24px;
  padding: 10px 14px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  transform: rotate(-4deg);
}

.hi-offer-section {
  padding: 90px 0;
  color: var(--white);
  background: var(--red);
  border-top: 6px solid var(--ink);
  border-bottom: 6px solid var(--ink);
}

.hi-offer-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 48px;
  align-items: center;
}

.hi-offer-copy h2 {
  color: var(--white);
}

.hi-included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.hi-included-list span {
  padding: 9px 11px;
  color: var(--ink);
  background: var(--white);
  border-left: 6px solid var(--yellow);
  font-size: 0.85rem;
  font-weight: 800;
}

.hi-checkout-card {
  padding: 32px;
  color: var(--ink);
  background: var(--white);
  border: 5px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
  text-align: center;
}

.hi-checkout-label,
.hi-not-subscription {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hi-price {
  margin: 8px 0 0;
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: 5rem;
  line-height: 1;
}

.hi-not-subscription {
  margin-bottom: 20px;
  color: var(--muted);
}

.hi-checkout-date {
  display: grid;
  gap: 1px;
  margin-bottom: 22px;
  padding: 14px;
  background: var(--cream);
  border: 2px dashed var(--ink);
}

.hi-checkout-date span {
  font-size: 0.73rem;
  font-weight: 800;
}

.hi-checkout-date strong {
  font-size: 1.24rem;
}

.hi-checkout-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hi-guarantee-section {
  padding: 68px 0;
  background: var(--navy-deep);
}

.hi-guarantee-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: center;
  padding: 35px;
  background: var(--white);
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--yellow);
}

.hi-guarantee-icon {
  display: flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
  font-size: 3rem;
}

.hi-guarantee-copy > span {
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hi-guarantee-copy h2 {
  margin: 8px 0 15px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.hi-faq-wrap {
  max-width: 880px;
}

details {
  margin-bottom: 16px;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--yellow);
}

summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
}

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

.hi-final-cta {
  padding: 90px 0;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.hi-final-inner {
  max-width: 880px;
}

.hi-final-inner h2 {
  color: var(--white);
}

.hi-final-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 13px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--white);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  transform: rotate(-2deg);
}

.hi-final-meta {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.82rem;
  font-weight: 700;
}

.hi-footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.hi-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.79rem;
}

@media (max-width: 960px) {
  .hi-hero-grid,
  .hi-proof-grid,
  .hi-grade-grid,
  .hi-about-grid,
  .hi-offer-grid {
    grid-template-columns: 1fr;
  }

  .hi-calendar-wrap {
    max-width: 650px;
  }

  .hi-value-grid,
  .hi-steps-grid,
  .hi-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hi-about-photo {
    max-width: 330px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hi-page-width {
    width: min(100% - 24px, 1160px);
  }

  .hi-deadline-inner {
    min-height: 70px;
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 8px 0;
    font-size: 0.7rem;
    text-align: center;
  }

  .hi-hero,
  .hi-section,
  .hi-about-section,
  .hi-offer-section,
  .hi-final-cta {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .hi-hero-grid {
    gap: 45px;
  }

  .hi-hero-facts,
  .hi-value-grid,
  .hi-steps-grid,
  .hi-benefits-grid,
  .hi-included-list {
    grid-template-columns: 1fr;
  }

  .hi-button {
    width: 100%;
    padding: 14px 11px;
    font-size: 0.87rem;
  }

  .hi-calendar {
    padding: 24px 16px 32px;
  }

  .hi-calendar-day {
    font-size: clamp(7rem, 38vw, 10rem);
  }

  .hi-calendar-stamp {
    right: -8px;
    bottom: 25px;
    border-width: 4px;
    font-size: 1.75rem;
  }

  .hi-calendar-offer {
    margin-right: 10px;
    margin-left: 10px;
  }

  .hi-guarantee-card {
    grid-template-columns: 1fr;
    padding: 27px 21px;
    text-align: center;
  }

  .hi-guarantee-icon {
    margin: 0 auto;
  }

  .hi-checkout-card {
    padding: 27px 20px;
  }

  .hi-price {
    font-size: 4rem;
  }

  .hi-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hi-button {
    transition: none;
  }
}
