@charset "UTF-8";
:root {
  --red-main: #ff5e5e;
  --yellow-main: #ffd966;
  --green-sub: #92d050;
  --orange-sub: #ed7d31;
  --blue-header: #00b0f0;
  --bg-gray: #f4f4f4;
  --value-box-bg: #d9d2c7;
  --color-primary: #1ba01b;
  --color-primary-dark: #0f7f26;
  --color-primary-soft: #eaf8ec;
  --color-secondary: #1967d2;
  --color-secondary-soft: #eaf3ff;
  --color-navy: #061d45;
  --color-text: #081a3a;
  --color-muted: #5f6f89;
  --color-surface: #ffffff;
  --color-surface-soft: #f7faf7;
  --color-border: #dfe8de;
  --shadow-soft: 0 18px 60px rgba(6, 29, 69, 0.08);
  --section-padding: clamp(44px, 6vw, 78px);
  --container-width: 1180px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

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

.flex {
  display: flex;
}
.flex.vertical {
  flex-direction: column;
}

.question {
  margin: 2rem 0;
  border: solid 2px grey;
  padding: 2rem;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: var(--bg-gray);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 26px;
  overflow-x: hidden;
}

.report-container {
  width: min(1180px, 100vw - 40px);
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 24px auto;
}

/* Fő cím */
.main-title {
  text-align: center;
  padding: 15px 60px;
  border-radius: 8px;
  font-size: 2.2em;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto 40px auto;
}

/* Jelmagyarázat */
.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 48px 0 30px;
  font-size: 1.1em;
  font-weight: 500;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

/* Rács elrendezés */
.main-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.report-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.report-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Összesített kategória fejlécek */
.category-header {
  padding: 0;
  border-radius: 8px;
  text-align: left;
  font-weight: bold;
  font-size: 1.45em;
  margin: 0;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 34px;
}

.overall-average {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.overall-average-label {
  font-weight: 700;
}

.overall-average-value {
  min-width: 70px;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}

.traits-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trait-grid-header,
.trait-row {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: center;
}

.trait-grid-header {
  font-size: 0.88em;
  font-weight: 700;
  line-height: 18px;
}

.score-heading,
.score-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
}

.score-heading {
  margin-bottom: 0;
  text-align: center;
}

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

.trait-row {
  align-items: start;
}

.score-row {
  margin-bottom: 0;
}

.label {
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  font-size: 0.95em;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-box {
  background-color: var(--value-box-bg);
  padding: 6px 2px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.85em;
  font-weight: 500;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trait-accordion {
  border: 1px solid #e4ded4;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.trait-accordion summary {
  cursor: pointer;
  list-style: none;
  min-height: 48px;
  padding: 12px 48px 12px 16px;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 700;
}

.trait-accordion summary::-webkit-details-marker {
  display: none;
}

.trait-accordion summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--value-box-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
}

.trait-accordion[open] summary::after {
  content: "-";
}

.trait-accordion-body {
  border-top: 1px solid #eee8df;
  padding: 14px 16px 16px;
  font-size: 0.88em;
  line-height: 24px;
  color: #333;
}

.trait-accordion-body p {
  margin: 0;
}

.trait-advice-title {
  margin-top: 14px;
  font-weight: 800;
}

.trait-advice-list {
  margin: 8px 0 0;
  padding-left: 20px;
  gap: 6px;
}

/* Chart stílus */
.chart-box {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.chart-container {
  width: min(360px, 100%);
  height: 360px;
}

.bg-green {
  background-color: var(--green-sub);
}

.bg-yellow {
  background-color: var(--yellow-main);
}

.bg-orange {
  background-color: var(--orange-sub);
}

@media (max-width: 900px) {
  body {
    padding: 0;
  }
  .report-container {
    width: 100%;
    padding: 24px 16px;
  }
  .main-title {
    padding: 12px 0;
    font-size: 1.8em;
    line-height: 42px;
  }
  .report-section-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .overall-average {
    white-space: normal;
  }
  .trait-grid-header,
  .trait-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .text-heading {
    display: none;
  }
  .score-heading,
  .score-row {
    grid-template-columns: minmax(0, 1fr) 96px;
  }
}
.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  position: absolute;
}

.button {
  box-sizing: border-box;
  appearance: none;
  border: none;
  color: white;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  padding: 16px 26px;
  min-height: 54px;
  box-shadow: 0 12px 26px rgba(27, 160, 27, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(27, 160, 27, 0.28);
}

input[type=email],
input[type=text],
textarea {
  padding: 15px 18px;
  font-size: 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-sizing: border-box;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-surface);
  outline: none;
}
input[type=email]:focus,
input[type=text]:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(27, 160, 27, 0.12);
}

.site-header {
  width: 100%;
  min-height: 72px;
  margin: 0;
  padding: 10px max(20px, (100vw - var(--container-width)) / 2);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}
.site-header a {
  text-decoration: none;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
  min-width: 0;
  flex-shrink: 1;
}
.site-logo span span {
  color: var(--color-primary);
}

.site-logo-mark {
  width: 14px;
  height: 34px;
  border-radius: 999px;
  display: inline-block;
  background: linear-gradient(180deg, var(--color-primary), var(--color-navy));
  box-shadow: inset 4px 0 0 rgba(255, 255, 255, 0.45);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  flex: 1;
}
.site-nav a {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--color-primary);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(27, 160, 27, 0.2);
  flex-shrink: 0;
}

.frontpage {
  background: radial-gradient(circle at top left, rgba(27, 160, 27, 0.08), transparent 34vw), linear-gradient(180deg, #fff 0%, #fbfcfb 58%, #fff 100%);
  color: var(--color-text);
  overflow: hidden;
}
.frontpage h1,
.frontpage h2,
.frontpage h3,
.frontpage p {
  margin-top: 0;
}
.frontpage h1,
.frontpage h2,
.frontpage h3 {
  color: var(--color-navy);
  letter-spacing: -0.035em;
}
.frontpage h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.landing-section {
  padding: var(--section-padding) 20px;
}

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

.hero-section {
  padding-top: clamp(48px, 6vw, 78px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-copy h1 {
  font-size: clamp(40px, 4.4vw, 54px);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-copy h1 span {
  display: block;
}

.hero-lead {
  max-width: 690px;
  color: var(--color-text);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 650px;
  margin-bottom: 32px;
  font-weight: 800;
}
.hero-proof svg {
  width: 26px;
  min-width: 26px;
  color: var(--color-primary);
}

.hero-form,
.cta-form {
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-form input[type=email],
.cta-form input[type=email] {
  width: min(310px, 100%);
  min-height: 54px;
}

.hero-secondary-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  color: var(--color-navy);
  font-weight: 900;
  text-decoration: none;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-photo-card {
  width: min(500px, 100%);
  aspect-ratio: 0.95;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, rgba(6, 29, 69, 0.85), rgba(6, 29, 69, 0.15)), radial-gradient(circle at 50% 18%, #f5d5bd 0 8%, transparent 9%), linear-gradient(135deg, #dae7df 0%, #fff 42%, #dbe6ef 100%);
  box-shadow: var(--shadow-soft);
}

.hero-photo-card::before,
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.32) 18% 19%, transparent 19% 41%, rgba(255, 255, 255, 0.28) 41% 42%, transparent 42%), linear-gradient(0deg, rgba(6, 29, 69, 0.18), transparent 54%);
}

.hero-photo-card::after {
  inset: auto 8% 8% 8%;
  height: 24%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(16px);
}

.leader-illustration {
  position: absolute;
  inset: 14% 18% 12%;
  z-index: 1;
}

.leader-head {
  width: 82px;
  height: 82px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(#f0c1a2, #d99b78);
  border: 8px solid rgba(6, 29, 69, 0.72);
  box-shadow: 0 18px 40px rgba(6, 29, 69, 0.22);
}

.leader-body {
  width: 230px;
  height: 250px;
  margin: -2px auto 0;
  border-radius: 78px 78px 34px 34px;
  background: linear-gradient(135deg, #082b5b, #0d4b83);
  position: relative;
}

.leader-body::before,
.leader-body::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 24px;
  top: 120px;
  background: #f0c1a2;
  border-radius: 999px;
}

.leader-body::before {
  left: -36px;
  transform: rotate(23deg);
}

.leader-body::after {
  right: -36px;
  transform: rotate(-23deg);
}

.leader-desk {
  width: 78%;
  height: 24px;
  margin: -22px auto 0;
  border-radius: 999px;
  background: rgba(6, 29, 69, 0.7);
}

.floating-feedback {
  position: absolute;
  right: 20px;
  bottom: 24px;
  z-index: 2;
  width: min(270px, 100% - 40px);
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 18px;
  color: var(--color-navy);
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
  box-shadow: 0 16px 35px rgba(6, 29, 69, 0.16);
}
.floating-feedback svg {
  width: 36px;
  min-width: 36px;
  color: var(--color-primary);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-heading p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 0;
}

.focus-section,
.process-section,
.benefits-section,
.faq-section {
  background: rgba(255, 255, 255, 0.72);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.focus-item {
  text-align: center;
}
.focus-item p {
  margin: 16px 0 0;
  font-weight: 750;
  line-height: 1.55;
}

.line-icon,
.soft-icon,
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.line-icon {
  color: var(--color-primary);
}
.line-icon svg {
  width: 52px;
  height: 52px;
}

.practice-section {
  background: linear-gradient(180deg, rgba(247, 250, 247, 0.2), rgba(247, 250, 247, 0.9));
}

.leadership-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.leadership-card {
  display: grid;
  grid-template-columns: 1fr minmax(190px, 0.55fr);
  gap: 24px;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.authentic-card {
  background: linear-gradient(135deg, #eff9ef, #ffffff);
}

.servant-card {
  background: linear-gradient(135deg, #eff7ff, #ffffff);
}
.servant-card .line-icon {
  color: var(--color-secondary);
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.card-title-row h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 20px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 750;
}
.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 13px;
  font-weight: 900;
}

.blue-checks li::before {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.experience-box {
  border-radius: 14px;
  background: #ddf5de;
  padding: 22px;
}
.experience-box h4 {
  color: var(--color-primary-dark);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 16px;
}
.experience-box p {
  margin: 0;
  line-height: 1.6;
}

.blue-box {
  background: #dff0ff;
}
.blue-box h4 {
  color: #0f5eb8;
}

.process-section {
  border-radius: 28px;
  margin: 0 auto;
  width: min(100% - 40px, var(--container-width) + 80px);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 54px;
  color: #aab6c6;
  font-size: 30px;
}
.process-step:last-child::after {
  display: none;
}
.process-step h3 {
  text-transform: uppercase;
  font-size: 14px;
  margin: 16px 0 10px;
}
.process-step p {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  background: var(--color-primary);
  font-weight: 900;
  margin-bottom: -8px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: var(--color-navy);
  background: #f2f5f8;
  margin: 0 auto;
}
.step-icon svg {
  width: 38px;
  height: 38px;
}

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

.benefit-item {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid var(--color-border);
}
.benefit-item:last-child {
  border-right: 0;
}
.benefit-item p {
  margin: 18px 0 0;
  font-weight: 800;
  line-height: 1.55;
}

.soft-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-secondary-soft);
  color: var(--color-secondary);
}
.soft-icon svg {
  width: 38px;
  height: 38px;
}

.science-section {
  padding-top: 44px;
}

.science-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.model-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.model-card h3 {
  font-size: 32px;
  margin: 16px 0 6px;
}
.model-card p {
  color: var(--color-muted);
  margin: 0;
}

.small-icon {
  width: 46px;
  height: 46px;
  background: var(--color-primary-soft);
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 900;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list details {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 28px rgba(6, 29, 69, 0.04);
}
.faq-list summary {
  cursor: pointer;
  color: var(--color-navy);
  font-weight: 900;
}
.faq-list p {
  color: var(--color-muted);
  margin: 14px 0 0;
}

.final-cta-section {
  padding-top: 32px;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
  color: white;
  background: linear-gradient(135deg, #06265b, #021434);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 22px 60px rgba(6, 29, 69, 0.2);
}
.final-cta h2,
.final-cta p {
  color: white;
}
.final-cta h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 10px;
}
.final-cta p {
  margin-bottom: 0;
  line-height: 1.65;
  opacity: 0.9;
}

.rocket-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), #63cf61);
  color: white;
}
.rocket-icon svg {
  width: 48px;
  height: 48px;
}

.cta-form {
  flex-direction: column;
  align-items: stretch;
}
.cta-form input[type=email],
.cta-form .button {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.trust-row div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 18px;
}
.trust-row strong {
  color: var(--color-navy);
}
.trust-row span {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.box {
  background-color: white;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 16px;
  box-shadow: 0px 6px 20px 5px rgba(0, 0, 0, 0.0901960784);
}

.main-wrapper {
  width: min(80%, 1400px);
  min-width: 800px;
  display: flex;
  flex-direction: column;
  margin: 64px auto;
  gap: 64px;
}

form.send-emails {
  display: flex;
  flex-direction: column;
  width: min(500px, 100%);
  gap: 16px;
  align-items: center;
}
form.send-emails textarea {
  height: 300px;
}

.alert-message {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 32px;
  width: 100%;
  text-align: center;
  line-height: normal;
  max-width: 600px;
  margin: 100px auto;
  box-sizing: border-box;
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .hero-grid,
  .science-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .leadership-cards,
  .focus-grid,
  .benefit-grid,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-step::after {
    display: none;
  }
  .final-cta {
    grid-template-columns: auto 1fr;
  }
  .final-cta .cta-form {
    grid-column: 1/-1;
  }
}
@media (max-width: 720px) {
  :root {
    --section-padding: 56px;
  }
  .site-header {
    padding: 10px 16px;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .site-logo {
    font-size: 21px;
  }
  .site-logo-mark {
    width: 10px;
    height: 28px;
  }
  .site-nav {
    display: none;
  }
  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0;
  }
  .header-cta::before {
    content: "Kezdem";
    font-size: 12px;
  }
  .header-cta span {
    font-size: 13px;
  }
  .landing-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-form,
  .cta-form {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-form input[type=email],
  .hero-form .button,
  .cta-form input[type=email],
  .cta-form .button {
    width: 100%;
  }
  .hero-copy h1 {
    font-size: clamp(32px, 9vw, 36px);
    overflow-wrap: break-word;
  }
  .hero-visual {
    order: 0;
  }
  .hero-secondary-link {
    width: 100%;
    justify-content: center;
  }
  .hero-photo-card {
    aspect-ratio: 1;
    border-radius: 22px;
  }
  .floating-feedback {
    left: 16px;
    right: 16px;
    width: auto;
  }
  .focus-grid,
  .leadership-cards,
  .benefit-grid,
  .science-grid,
  .model-cards,
  .trust-row,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .leadership-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .benefit-item {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
    padding: 24px 0;
  }
  .benefit-item:last-child {
    border-bottom: 0;
  }
  .process-section {
    width: 100%;
    border-radius: 0;
  }
  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .rocket-icon {
    margin: 0 auto;
  }
  .main-wrapper {
    width: calc(100% - 32px);
    min-width: 0;
  }
}

/*# sourceMappingURL=style.css.map */
