@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');
  
:root {
  --blue:#1261a8;
  --blue-dark:#0b3764;
  --blue-deep:#082b4e;
  --yellow:#ffc928;
  --yellow-soft:#fff5cf;
  --ink:#132b40;
  --muted:#607185;
  --paper:#f7faff;
  --line:#dbe7f2;
  --white:#fff;
  --green:#48a88a;
  --shadow:0 20px 60px rgba(16,55,93,.12)
}

* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  color:var(--ink);
  font-family:'Nunito Sans',sans-serif;
  background:#fff;
  line-height:1.55
}
a {
  color:inherit;
  text-decoration:none
}
.container {
  width:min(1160px,calc(100% - 48px));
  margin:0 auto
}
.site-header {
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(219,231,242,.8);
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:blur(12px)
}
.nav-wrap {
  height:76px;
  display:flex;
  align-items:center;
  gap:32px
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:1.25rem;
  white-space:nowrap
}
.brand-mark {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:10px;
  background:var(--blue);
  color:#fff;
  font-size:1.1rem;
  box-shadow:4px 4px 0 var(--yellow)
}
.brand-name span {
  color:var(--blue)
}
.main-nav {
  display:flex;
  gap:28px;
  margin-left:auto;
  color:var(--muted);
  font-size:.92rem;
  font-weight:700
}
.main-nav a:hover,.text-link:hover {
  color:var(--blue)
}
.nav-button {
  padding:10px 17px;
  border-radius:9px;
  background:var(--blue);
  color:#fff;
  font-weight:800;
  font-size:.9rem
}
.hero-section {
  overflow:hidden;
  background:linear-gradient(120deg,#f4f9ff 0%,#fff 60%);
  padding:88px 0 100px
}
.hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:60px
}
.eyebrow {
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.72rem;
  font-weight:900;
  margin-bottom:18px
}
.eyebrow-dot {
  display:inline-block;
  width:8px;
  height:8px;
  background:var(--yellow);
  border-radius:50%;
  margin-right:7px
}
.hero-copy h1,.section-heading h2,.final-cta h2 {
  font-family:'Space Grotesk',sans-serif;
  line-height:1.08;
  letter-spacing:-.045em;
  margin:0
}
.hero-copy h1 {
  font-size:clamp(2.8rem,5vw,4.45rem);
  max-width:690px
}
.hero-copy h1 em {
  font-style:normal;
  color:var(--blue);
  position:relative
}
.hero-copy h1 em:after {
  content:'';
  height:7px;
  border-radius:10px;
  background:var(--yellow);
  position:absolute;
  left:2px;
  right:2px;
  bottom:-5px;
  transform:rotate(-2deg);
  z-index:0
}
.hero-lead {
  color:var(--muted);
  font-size:1.16rem;
  max-width:610px;
  margin:28px 0
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:24px;
  margin:31px 0
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  border:0;
  border-radius:9px;
  padding:14px 21px;
  font-size:.95rem;
  font-weight:900;
  transition:transform .2s,box-shadow .2s
}
.button:hover {
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(18,97,168,.2)
}
.button-primary {
  color:#fff;
  background:var(--blue)
}
.button-secondary {
  background:var(--yellow);
  color:var(--blue-deep)
}
.button-outline {
  border:2px solid var(--blue);
  color:var(--blue);
  background:transparent
}
.button-yellow {
  background:var(--yellow);
  color:var(--blue-deep)
}
.button-wide {
  width:100%;
  margin-top:20px
}
.text-link {
  font-weight:900;
  color:var(--blue);
  font-size:.95rem
}
.text-link span,.button span {
  font-size:1.2em
}
.hero-proof {
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--muted);
  font-size:.84rem;
  font-weight:700
}
.proof-icon {
  display:grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#dff4eb;
  color:#238061;
  font-weight:900
}
.proof-separator {
  color:#a8b7c5
}
.hero-visual {
  min-height:440px;
  position:relative;
  display:grid;
  place-items:center
}
.visual-orbit {
  position:absolute;
  border:1px dashed #b9d1e4;
  border-radius:50%;
  transform:rotate(-18deg)
}
.orbit-one {
  width:530px;
  height:310px
}
.orbit-two {
  width:390px;
  height:440px;
  transform:rotate(34deg);
  border-color:#e9d77d
}
.hero-card {
  position:absolute;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow)
}
.question-card {
  width:min(370px,78%);
  padding:25px 27px;
  transform:rotate(-5deg);
  z-index:2
}
.card-label {
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.68rem;
  font-weight:900
}
.math-question {
  font-family:'Space Grotesk',sans-serif;
  font-size:1.23rem;
  line-height:1.45;
  margin:19px 0 25px
}
.math-question strong {
  color:var(--blue)
}
.answer-row {
  display:flex;
  gap:8px;
  align-items:center;
  font-size:.9rem;
  color:var(--muted)
}
.answer-line {
  height:1px;
  background:#9ab5ca;
  width:95px
}
.card-footer {
  border-top:1px solid var(--line);
  margin-top:24px;
  padding-top:16px;
  font-size:.78rem;
  font-weight:800;
  color:#238061
}
.mini-check {
  display:inline-grid;
  place-items:center;
  width:18px;
  height:18px;
  background:#dcf5ea;
  border-radius:50%;
  margin-right:7px
}
.feedback-card {
  display:flex;
  align-items:center;
  gap:12px;
  padding:15px 18px;
  right:1%;
  bottom:55px;
  transform:rotate(4deg);
  z-index:3
}
.feedback-check {
  width:35px;
  height:35px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#e0f5eb;
  color:#238061;
  font-size:1.3rem;
  font-weight:900
}
.feedback-card strong,.feedback-card small {
  display:block
}
.feedback-card strong {
  font-size:.88rem
}
.feedback-card small {
  color:var(--muted);
  font-size:.7rem;
  margin-top:3px
}
.floating-symbol {
  position:absolute;
  font-family:'Space Grotesk',sans-serif;
  font-size:2.4rem;
  font-weight:700
}
.symbol-plus {
  top:35px;
  right:16%;
  color:var(--blue);
  transform:rotate(12deg)
}
.symbol-equals {
  bottom:38px;
  left:11%;
  color:var(--yellow);
  transform:rotate(-10deg)
}
.symbol-percent {
  top:18%;
  left:6%;
  color:#86b9da;
  transform:rotate(-13deg)
}
.section-light {
  background:var(--paper)
}
.offers-section {
  padding:102px 0
}
.section-heading h2 {
  font-size:clamp(2.1rem,4vw,3.2rem);
  color:var(--blue-deep)
}
.section-heading>p {
  color:var(--muted);
  max-width:650px;
  font-size:1.05rem
}
.centered {
  text-align:center
}
.centered>p {
  margin-left:auto;
  margin-right:auto
}
.offer-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:48px;
  align-items:stretch
}
.offer-card {
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:27px 25px;
  display:flex;
  flex-direction:column;
  box-shadow:0 8px 28px rgba(28,72,111,.04)
}
.offer-featured {
  border:2px solid var(--blue);
  box-shadow:0 16px 45px rgba(18,97,168,.15);
  transform:translateY(-8px)
}
.offer-card-muted {
  background:#fbfdff
}
.offer-topline {
  display:flex;
  justify-content:space-between;
  gap:8px;
  align-items:center;
  min-height:25px
}
.offer-tag {
  background:#e4f0fb;
  color:var(--blue);
  border-radius:20px;
  padding:5px 9px;
  font-size:.65rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.07em
}
.offer-tag-yellow {
  background:var(--yellow-soft);
  color:#996e00
}
.offer-tag-green {
  background:#e4f5ef;
  color:#278267
}
.offer-audience {
  color:#8495a5;
  font-size:.68rem;
  font-weight:800
}
.offer-icon {
  margin:27px 0 16px;
  width:43px;
  height:43px;
  display:grid;
  place-items:center;
  border-radius:12px;
  font-family:'Space Grotesk',sans-serif;
  font-size:1.5rem;
  font-weight:700
}
.offer-icon-blue {
  background:#e1effb;
  color:var(--blue)
}
.offer-icon-yellow {
  background:var(--yellow-soft);
  color:#ae8000
}
.offer-icon-green {
  background:#e4f5ef;
  color:#278267
}
.offer-card h3 {
  font-family:'Space Grotesk',sans-serif;
  font-size:1.55rem;
  line-height:1.15;
  margin:0;
  color:var(--blue-deep)
}
.offer-card h4 {
  font-size:1rem;
  margin:7px 0 13px;
  color:var(--blue)
}
.offer-card p {
  font-size:.88rem;
  color:var(--muted);
  margin:0
}
.check-list {
  list-style:none;
  padding:0;
  margin:22px 0 0
}
.check-list li {
  font-size:.8rem;
  font-weight:700;
  margin:9px 0;
  color:#3e566b
}
.check-list li:before {
  content:'✓';
  color:#2a9471;
  font-weight:900;
  margin-right:8px
}
.offer-price {
  margin-top:auto;
  padding-top:25px;
  color:var(--blue-deep)
}
.offer-price strong {
  font-family:'Space Grotesk',sans-serif;
  font-size:1.7rem
}
.offer-price span {
  font-size:.85rem;
  color:var(--muted);
  font-weight:800
}
.offer-note {
  font-size:.69rem;
  color:#7a8b9b;
  margin-top:3px;
  min-height:20px
}
.steps-section {
  padding:110px 0
}
.two-column {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:100px;
  align-items:start
}
.steps-section .section-heading h2 {
  max-width:460px
}
.steps-section .section-heading>p {
  margin:24px 0 30px
}
.text-link-dark {
  color:var(--blue-deep)
}
.steps-list {
  border-top:1px solid var(--line)
}
.step-item {
  display:grid;
  grid-template-columns:58px 1fr;
  gap:20px;
  padding:24px 0;
  border-bottom:1px solid var(--line)
}
.step-number {
  font-family:'Space Grotesk',sans-serif;
  font-size:.85rem;
  color:var(--blue);
  font-weight:700;
  padding-top:4px
}
.step-item h3 {
  font-family:'Space Grotesk',sans-serif;
  font-size:1.12rem;
  color:var(--blue-deep);
  margin:0 0 5px
}
.step-item p {
  font-size:.88rem;
  color:var(--muted);
  margin:0
}
.audience-section {
  padding:95px 0
}
.audience-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:42px
}
.audience-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:15px;
  padding:28px
}
.audience-emoji {
  font-size:1.7rem
}
.audience-card h3 {
  font-family:'Space Grotesk',sans-serif;
  font-size:1.25rem;
  margin:17px 0 8px;
  color:var(--blue-deep)
}
.audience-card p {
  margin:0;
  color:var(--muted);
  font-size:.9rem
}
.about-section {
  padding:92px 0
}
.about-box {
  display:grid;
  grid-template-columns:125px 1fr;
  gap:35px;
  align-items:center;
  max-width:860px
}
.about-box h2 {
  font-family:'Space Grotesk',sans-serif;
  line-height:1.15;
  font-size:2.1rem;
  color:var(--blue-deep);
  max-width:620px;
  margin:0
}
.about-box p {
  color:var(--muted);
  max-width:680px
}
.about-signature {
  font-weight:900;
  color:var(--blue)!important;
  margin-top:20px
}
.faq-section {
  padding:90px 0
}
.faq-wrap {
  display:grid;
  grid-template-columns:.65fr 1.35fr;
  gap:85px
}
.faq-list {
  border-top:1px solid var(--line)
}
details {
  border-bottom:1px solid var(--line);
  padding:19px 0
}
summary {
  cursor:pointer;
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  color:var(--blue-deep);
  list-style:none;
  padding-right:25px;
  position:relative
}
summary:after {
  content:'+';
  position:absolute;
  right:0;
  color:var(--blue);
  font-size:1.3rem
}
details[open] summary:after {
  content:'–'
}
details p {
  color:var(--muted);
  font-size:.9rem;
  margin:13px 0 2px
}
.final-cta {
  background:var(--blue-deep);
  color:#fff;
  padding:70px 0
}
.final-cta-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:35px
}
.final-cta h2 {
  color:#fff;
  font-size:clamp(2rem,4vw,3rem);
  max-width:620px
}
.eyebrow-light {
  color:var(--yellow)
}
.site-footer {
  background:#061f39;
  color:#b6c8d8;
  padding:23px 0
}
.footer-inner {
  display:flex;
  align-items:center;
  gap:25px;
  font-size:.78rem
}
.footer-inner>span {
  margin-left:auto
}
.brand-footer {
  color:#fff;
  font-size:1rem
}
.brand-footer .brand-mark {
  width:28px;
  height:28px;
  font-size:.9rem
}
.brand-footer .brand-name span {
  color:var(--yellow)
}

@media(max-width:900px) {
  .main-nav {
  display:none
}
.hero-grid,.two-column,.faq-wrap {
  grid-template-columns:1fr;
  gap:50px
}
.hero-section {
  padding-top:65px
}
.hero-visual {
  min-height:390px
}
.offer-grid {
  grid-template-columns:1fr
}
.offer-featured {
  transform:none
}
.offer-card {
  max-width:560px;
  margin:auto;
  width:100%
}
.audience-grid {
  grid-template-columns:1fr;
  max-width:560px;
  margin-left:auto;
  margin-right:auto
}
.audience-card {
  padding:23px
}
.two-column {
  gap:55px
}
.faq-wrap {
  gap:35px
}
.final-cta-inner {
  align-items:flex-start;
  flex-direction:column
}
.final-cta .button {
  width:100%
}

}

@media(max-width:560px) {
  .container {
  width:min(100% - 32px,1160px)
}
.nav-wrap {
  height:64px
}
.nav-button {
  padding:8px 12px;
  font-size:.78rem
}
.hero-section {
  padding:57px 0 65px
}
.hero-copy h1 {
  font-size:2.75rem
}
.hero-lead {
  font-size:1rem
}
.hero-actions {
  align-items:flex-start;
  flex-direction:column;
  gap:18px
}
.hero-proof {
  align-items:flex-start;
  flex-wrap:wrap
}
.proof-separator {
  display:none
}
.hero-visual {
  min-height:330px;
  transform:scale(.87);
  margin:-10px -30px
}
.question-card {
  width:82%
}
.feedback-card {
  right:0;
  bottom:30px
}
.offers-section,.steps-section,.about-section,.faq-section {
  padding:72px 0
}
.about-box {
  grid-template-columns:1fr;
  gap:25px
}
.about-avatar {
  width:75px;
  height:75px;
  font-size:1.5rem
}
.footer-inner {
  flex-wrap:wrap
}
.footer-inner>span {
  margin-left:0;
  width:100%;
  order:3
}
.brand-footer {
  margin-right:auto
}

}


/* Markdown bekezdések és Quarto-listák illesztése a kártyákhoz. */
.nav-wrap > p, .main-nav > p, .hero-actions > p,
.hero-proof > p, .offer-topline > p, .answer-row > p,
.footer-inner > p  {
   display: contents;
   
}

.hero-visual p, .offer-icon p, .about-avatar p,
.offer-price p, .card-label p, .card-footer p,
.step-item > p  {
   margin: 0;
   
}

.check-list ul  {
   list-style: none;
   padding: 0;
   margin: 0;
   
}

.offer-card > p:last-child  {
   margin-top: auto;
   
}

.feedback-hint  {
   display: block;
   color: var(--muted);
   font-size: .7rem;
   margin-top: 3px;
   
}

.feedback-card > p  {
   margin: 0;
   
}

.hero-lead  {
   display: block;
   
}

.offer-note p  {
   font-size: inherit;
   
}

.about-avatar p  {
   color: inherit;
   
}

.site-header + .ms-home  {
   margin-top: 0;
   
}

[id]  {
   scroll-margin-top: 90px;
   
}

a:focus-visible, summary:focus-visible  {
   outline: 3px solid var(--yellow);
   outline-offset: 4px;
   
}

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

  .button  {
   transition: none;
   
}


}
.about-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 8px 8px 0 var(--yellow);
}
