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

  :root {
    --red:       #E63946;
    --red-dark:  #C62030;
    --red-light: #FFF0F1;
    --red-mid:   #FFD6D9;
    --black:     #1A1A1A;
    --gray:      #6B6B6B;
    --gray-lt:   #F5F4F0;
    --white:     #FFFFFF;
    --cream:     #FFF8F0;
    --green:     #4CAF50;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--red-mid);
    padding: 0 5vw;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 30px;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-logo span { color: var(--red); }
  .nav-logo-img { height: 44px; width: auto; display: block; }

  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.18s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-links a.nav-active { color: var(--red); font-weight: 700; }

  .nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
    transition: background 0.18s !important;
  }
  .nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

  .nav-login {
    background: #534AB7;
    color: var(--white) !important;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
    transition: background 0.18s !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-login svg { display: block; }
  .nav-login:hover { background: #3C357F !important; color: var(--white) !important; }

  .nav-burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .nav-burger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: 0.3s; }

  .label_katic {
	  color: #144e7e;
  }
  .label_app {
	  color: #d42b24;
	  margin-left: -7px;
  }

  /* ── HERO ── */
  .hero {
    background: var(--cream);
    padding: 80px 5vw 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    min-height: 560px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    right: -150px; top: -150px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: var(--red-mid);
    opacity: 0.35;
  }

  .hero-text { position: relative; z-index: 1; padding-bottom: 80px; }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-light);
    color: var(--red);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--black);
  }
  .hero-title em { color: var(--red); font-style: normal; }

  .hero-sub {
    font-size: 16px;
    color: var(--gray);
    max-width: 420px;
    margin-bottom: 36px;
    line-height: 1.7;
  }

  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.18s, transform 0.12s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

  .btn-secondary {
    background: var(--white);
    color: var(--black);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 1.5px solid var(--red-mid);
    transition: border-color 0.18s, transform 0.12s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--red); transform: translateY(-1px); }

  .hero-phones {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: -20px;
    padding-bottom: 0;
  }

  /* ── PHONE MOCKUP ── */
  .phone {
    width: 180px;
    background: var(--black);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    flex-shrink: 0;
    position: relative;
  }
  .phone.main { width: 200px; z-index: 2; margin-bottom: 0; }
  .phone.side { width: 165px; opacity: 0.85; margin-bottom: -20px; }
  .phone.side-left { transform: rotate(-6deg) translateX(20px); }
  .phone.side-right { transform: rotate(6deg) translateX(-20px); }

  .phone-notch {
    width: 60px; height: 10px;
    background: #111;
    border-radius: 99px;
    margin: 0 auto 8px;
  }

  .phone-screen {
    background: var(--cream);
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 9/19;
    display: flex;
    flex-direction: column;
  }

  .ps-header {
    background: var(--red);
    padding: 10px 12px 8px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 11px;
  }
  .ps-header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
  .ps-avatar { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.3); }
  .ps-greeting { font-size: 9px; opacity: 0.85; }

  .ps-body { padding: 8px; flex: 1; display: flex; flex-direction: column; gap: 6px; }

  .ps-card {
    background: white;
    border-radius: 8px;
    padding: 7px 9px;
    font-size: 8px;
    font-family: 'Nunito', sans-serif;
  }
  .ps-card-title { font-weight: 700; color: var(--black); margin-bottom: 2px; font-size: 9px; }
  .ps-card-sub { color: var(--gray); font-size: 7.5px; }
  .ps-card-row { display: flex; align-items: center; gap: 5px; }
  .ps-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
  .ps-dot.green { background: var(--green); }
  .ps-dot.amber { background: #F59E0B; }

  .ps-tabs {
    display: flex;
    border-top: 1px solid var(--red-mid);
    background: white;
  }
  .ps-tab {
    flex: 1;
    text-align: center;
    padding: 5px 0 4px;
    font-size: 7px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--gray);
  }
  .ps-tab.active { color: var(--red); border-top: 2px solid var(--red); }

  /* Screen 2 – Üzenőfal */
  .ps-wall { padding: 8px; display: flex; flex-direction: column; gap: 5px; }
  .ps-post {
    background: white;
    border-radius: 8px;
    padding: 7px 9px;
  }
  .ps-post-header { display: flex; align-items: center; gap: 5px; margin-bottom: 4px; }
  .ps-post-avatar { width: 14px; height: 14px; border-radius: 50%; background: var(--red-mid); }
  .ps-post-name { font-size: 8px; font-weight: 700; font-family: 'Nunito', sans-serif; }
  .ps-post-text { font-size: 7.5px; color: var(--gray); line-height: 1.4; }
  .ps-post-img { width: 100%; height: 36px; background: var(--gray-lt); border-radius: 5px; margin-top: 4px; display: flex; align-items: center; justify-content: center; }

  /* Screen 3 – Pénzügyek */
  .ps-finance { padding: 8px; }
  .ps-balance { background: var(--red); border-radius: 8px; padding: 8px; color: white; margin-bottom: 6px; }
  .ps-balance-label { font-size: 7.5px; opacity: 0.8; font-family: 'Nunito', sans-serif; }
  .ps-balance-amount { font-size: 16px; font-weight: 900; font-family: 'Nunito', sans-serif; line-height: 1.2; }
  .ps-tx { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; border-bottom: 1px solid var(--red-mid); }
  .ps-tx-name { font-size: 7.5px; font-family: 'Nunito', sans-serif; }
  .ps-tx-amt { font-size: 8px; font-weight: 700; font-family: 'Nunito', sans-serif; color: var(--red); }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--red);
    display: flex;
    justify-content: center;
	align-items: center;					
    gap: 0;
  }
  .stat-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
  }

  /* ── SECTIONS SHARED ── */
  section { padding: 80px 5vw; }
  .section-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 3vw, 40px);
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 15px;
    color: var(--gray);
    max-width: 100%;
    line-height: 1.7;
  }

  /* ── FEATURES ── */
  .features { background: var(--white); }
  .features-intro { text-align: center; margin-bottom: 56px; }
  .features-intro .section-sub { margin: 0 auto; }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .feature-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1.5px solid var(--red-mid);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(230,57,70,0.1); }

  .feature-icon {
    width: 48px; height: 48px;
    background: var(--red-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .feature-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--black);
  }
  .feature-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
  }

  /* ── SCREENSHOTS ── */
  .screenshots { background: var(--gray-lt); }
  .screenshots-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  .screenshots-layout.reverse { direction: rtl; }
  .screenshots-layout.reverse > * { direction: ltr; }

  .screenshots-phones {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
  }

  .screen-feature-list {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .screen-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
  }
  .check-icon {
    width: 20px; height: 20px;
    background: var(--red-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
  }

  /* ── PRICING ── */
  .pricing { background: var(--white); }
  .pricing-intro { text-align: center; margin-bottom: 52px; }
  .pricing-intro .section-sub { margin: 0 auto; }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
  }

  .price-card {
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1.5px solid var(--red-mid);
    background: var(--white);
    transition: transform 0.2s;
  }
  .price-card:hover { transform: translateY(-4px); }
  .price-card.featured {
    background: var(--black);
    border-color: var(--black);
    position: relative;
  }

  .price-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--red);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 11px;
    padding: 4px 14px;
    border-radius: 99px;
    white-space: nowrap;
  }

  .price-tier {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    color: var(--red);
  }
  .price-card.featured .price-tier { color: rgba(255,255,255,0.6); }

  .price-amount {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 44px;
    color: var(--black);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
  }
  .price-card.featured .price-amount { color: white; }

  .price-unit {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 24px;
  }
  .price-card.featured .price-unit { color: rgba(255,255,255,0.5); }

  .price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }
  .price-features li {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .price-card.featured .price-features li { color: rgba(255,255,255,0.7); }
  .price-features li::before {
    content: '✓';
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--red-light);
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .price-card.featured .price-features li::before {
    background: rgba(230,57,70,0.25);
    color: #ff8a8a;
  }

  .price-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.18s;
  }
  .price-btn-outline {
    border: 1.5px solid var(--red-mid);
    color: var(--black);
  }
  .price-btn-outline:hover { border-color: var(--red); }
  .price-btn-filled {
    background: var(--red);
    color: white;
  }
  .price-btn-filled:hover { background: var(--red-dark); }

  .pricing-note {
    text-align: center;
    margin-top: 28px;
    font-size: 16px;
    color: var(--gray);
  }

  /* ── FAQ ── */
  .faq { background: var(--cream); }
  .faq-inner {
    max-width: 680px;
    margin: 0 auto;
  }
  .faq-intro { text-align: center; margin-bottom: 44px; }

  .faq-item {
    border-bottom: 1px solid var(--red-mid);
  }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .faq-q:hover { color: var(--red); }
  .faq-chevron {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--red-light);
    color: var(--red);
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s;
    font-weight: 900;
  }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
  }
  .faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 18px;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: var(--red);
    padding: 72px 5vw;
    text-align: center;
  }
  .cta-banner h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(26px, 3.5vw, 44px);
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }
  .cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
  }
  .btn-white {
    background: white;
    color: var(--red);
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.18s;
    display: inline-block;
  }
  .btn-white:hover { background: var(--red-light); }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    padding: 48px 5vw 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .footer-brand .nav-logo { color: white; margin-bottom: 10px; display: inline-flex; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
  .footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 14px;
  }
  .footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.18s;
  }
  .footer-col a:hover { color: var(--red); }
  .footer-bottom {
    background: var(--black);
    padding: 16px 5vw 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    gap: 8px;
  }

  /* ── BUG DECO ── */
  .bug-deco {
    display: inline-block;
    font-size: 18px;
    animation: bugSpin 6s linear infinite;
  }
  @keyframes bugSpin { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .hero {
      grid-template-columns: 1fr;
      padding-top: 48px;
      min-height: unset;
      text-align: center;
    }
    .hero-text { padding-bottom: 32px; }
    .hero-sub { margin: 0 auto 28px; }
    .hero-btns { justify-content: center; }
    .hero-phones { padding-bottom: 0; }
    .phone.side { display: none; }

    .stats-bar { flex-wrap: wrap; }
    .stat-item { max-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }

    .screenshots-layout { grid-template-columns: 1fr; }
    .screenshots-layout.reverse { direction: ltr; }
    .screenshots-phones { order: -1; }

    footer { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 60px; left: 0; right: 0;
      background: white;
      padding: 20px 5vw;
      border-bottom: 1px solid var(--red-mid);
      gap: 16px;
      z-index: 99;
    }
    .nav-burger { display: flex; }
  }

/* ══════════════════════════════════════════════════════════
   RENDELŐ OLDAL (a landing dizájnjában)
   ══════════════════════════════════════════════════════════ */
.order-section { background: var(--cream); min-height: 100vh; padding: 40px 24px 64px; }
.order-wrap { max-width: 640px; margin: 0 auto; }
.order-wrap.narrow { max-width: 520px; }
.order-head { text-align: center; margin-bottom: 28px; }
.order-head .section-sub { margin: 8px auto 0; }
.card {
  background: var(--white); border: 1px solid var(--red-mid);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 10px 40px rgba(230,57,70,0.07);
}
.card.center { text-align: center; }
.order-form h2 {
  font-family: 'Nunito', sans-serif; font-size: 16px; color: var(--black);
  margin: 24px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-lt);
}
.order-form h2:first-of-type { margin-top: 0; }
.order-form label { display: block; font-size: 13px; font-weight: 600; color: var(--gray); margin-bottom: 14px; }
.order-form input {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1.5px solid var(--red-mid); border-radius: var(--radius-sm);
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--black);
}
.order-form input:focus { outline: none; border-color: var(--red); }
.row { display: flex; gap: 14px; }
.row .grow { flex: 1; }
.row .zip { width: 130px; }
.color-label input[type=color] { width: 56px; height: 46px; padding: 4px; cursor: pointer; }
.hint { font-size: 12px; color: var(--gray); margin: 16px 0 8px; }
.lookup-note { font-size: 12px; margin: -8px 0 12px; min-height: 15px; }
.lookup-note.found { color: var(--green); }
.lookup-note.new { color: var(--red); }
.btn-pay { width: 100%; margin-top: 26px; justify-content: center; text-align: center; }
.secure-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 14px; }
#group_color { width: 92px; }
/* Havi/éves választó */
.billing-toggle { display: flex; gap: 12px; }
.billing-opt {
  flex: 1; display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
  padding: 16px; border: 2px solid var(--red-mid); border-radius: var(--radius-md);
  background: var(--white); cursor: pointer; font-family: 'Inter', sans-serif;
  transition: border-color .15s, background .15s;
}
.billing-opt:hover { border-color: var(--red); }
.billing-opt.active { border-color: var(--red); background: var(--red-light); }
.billing-label { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px; color: var(--black); }
.billing-price { font-size: 13px; color: var(--red); font-weight: 700; }

/* Sikeres/megszakított oldal ikon */
.big-ico {
  font-size: 40px; width: 84px; height: 84px; line-height: 84px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--red-light); color: var(--red);
}
.big-ico.ok { background: #E7F6E9; color: var(--green); }
.center .btn-primary { margin-top: 20px; display: inline-block; }

/* Két oszlopos árazás (egy csomag, havi/éves) */
.pricing-grid-2 { max-width: 720px; margin-left: auto; margin-right: auto; grid-template-columns: repeat(2, 1fr); }

@media (max-width: 560px) {
  .row { flex-direction: column; gap: 0; }
  .row .zip { width: 100%; }
  .billing-toggle { flex-direction: column; }
  .card { padding: 22px; }
  .pricing-grid-2 { grid-template-columns: 1fr; }
}

/* ── Óvoda autocomplete legördülő ── */
.kg-autocomplete { position: relative; display: block; }
.kg-suggest {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 30;
  list-style: none; margin: 0; padding: 6px;
  background: var(--white); border: 1.5px solid var(--red-mid);
  border-radius: var(--radius-sm); box-shadow: 0 12px 32px rgba(230,57,70,0.12);
  max-height: 260px; overflow-y: auto;
}
.kg-suggest-item {
  padding: 9px 11px; border-radius: 9px; cursor: pointer;
  display: flex; flex-direction: column; gap: 1px;
}
.kg-suggest-item strong {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: var(--black);
}
.kg-suggest-addr { font-size: 12px; color: var(--gray); }
.kg-suggest-item:hover, .kg-suggest-item.active { background: var(--red-light); }

/* Bevezető bekezdés – full HD-n ne legyen túl széles (a többi elemhez igazítva) */
.intro-lead { max-width: 900px; margin-left: auto; margin-right: auto; }

/* Valódi app-screenshot a telefon-keretben */
.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* kitölti a keretet arányosan (nem torzít) */
  object-position: top center;
  display: block;
}

/* ── Kapcsolati űrlap (a CTA banner piros hátterén) ── */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}
.contact-form .contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form .contact-row input { flex: 1; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: #fff;
  margin-bottom: 12px;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255,255,255,0.6);
}
.contact-form button {
  border: none;
  cursor: pointer;
  width: 100%;
}
/* Honeypot mező – ember számára láthatatlan */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
/* A hibaoldal világos kártyáján a mezők keretesek legyenek */
.card .contact-form input,
.card .contact-form textarea {
  border: 1.5px solid var(--red-mid);
}
@media (max-width: 560px) {
  .contact-form .contact-row { flex-direction: column; gap: 0; }
}
/* ── Visszaszámláló (a hero tetején, teljes szélességben) ── */
.countdown {
  grid-column: 1 / -1;               /* átfogja a hero mindkét oszlopát */
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin: 0 0 8px 0;
  text-align: center;
  box-shadow: 0 8px 24px rgba(230,57,70,0.18);
}
.countdown-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  opacity: 0.95;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 58px;
}
.cd-box span {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
}
.cd-box small {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cd-sep {
  font-size: 22px;
  font-weight: 900;
  opacity: 0.6;
  align-self: flex-start;
  margin-top: 8px;
}
@media (max-width: 560px) {
  .cd-box { min-width: 48px; padding: 6px 8px; }
  .cd-box span { font-size: 21px; }
  .countdown { padding: 14px 12px; }
}

/* ── Kupon mező a rendelő űrlapon ── */
.coupon-box {
  margin: 8px 0 20px;
}
.coupon-box label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black, #2b2b3a);
}
.coupon-row {
  display: flex;
  gap: 8px;
}
.coupon-row input {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid #d9d6ec;
  border-radius: var(--radius-sm, 10px);
  font-size: 15px;
  text-transform: uppercase;
}
.coupon-btn {
  border: none;
  background: var(--purple, #7F77DD);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 0 18px;
  border-radius: var(--radius-sm, 10px);
  cursor: pointer;
  white-space: nowrap;
  transition: 0.18s;
}
.coupon-btn:hover { filter: brightness(1.05); }
.coupon-btn:disabled { opacity: 0.6; cursor: default; }
.coupon-result {
  margin-top: 8px;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
}
.coupon-result.ok {
  background: #e8f7ee;
  color: #1f7a44;
  border: 1px solid #bfe6cd;
}
.coupon-result.error {
  background: #fdecec;
  color: #b3261e;
  border: 1px solid #f5c6c3;
}
@media (max-width: 480px) {
  .coupon-row { flex-direction: column; }
  .coupon-btn { padding: 12px; }
}
/* ── Kapcsolati űrlap: adatvédelmi checkbox ── */
.contact-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px 0;
  text-align: left;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.contact-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #fff;
  cursor: pointer;
}
.contact-consent span { line-height: 1.4; }

/* ── Feliratkozás szekció ── */
.subscribe-section {
  background: var(--gray-lt, #f5f4fb);
  padding: 56px 5vw;
  text-align: center;
}
.subscribe-inner {
  max-width: 640px;
  margin: 0 auto;
}
.subscribe-form {
  margin-top: 22px;
}
.subscribe-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.subscribe-row input {
  flex: 1;
  padding: 13px 15px;
  border: 1.5px solid #d9d6ec;
  border-radius: var(--radius-sm, 10px);
  font-size: 15px;
  background: #fff;
}
.subscribe-row input:focus {
  outline: 2px solid var(--purple, #7F77DD);
  border-color: var(--purple, #7F77DD);
}
.subscribe-row .btn-primary {
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
@media (max-width: 560px) {
  .subscribe-row { flex-direction: column; }
}

/* ── Cookie hozzájárulás sáv ── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #2b2b3a;
  color: #fff;
  padding: 16px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner[hidden] { display: none; }
.cookie-text { max-width: 780px; }
.cookie-text a { color: #b7b0ff; text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.cookie-btn {
  border: none;
  cursor: pointer;
  padding: 11px 20px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.cookie-accept { background: var(--purple, #7F77DD); color: #fff; }
.cookie-accept:hover { filter: brightness(1.08); }
.cookie-reject { background: transparent; color: #cfcfe0; border: 1.5px solid #55556a; }
.cookie-reject:hover { background: rgba(255,255,255,0.06); }
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-btns { justify-content: flex-end; }
}

/* ── Jogi / adatvédelmi oldal ── */
.legal-section {
  padding: 48px 5vw 72px;
  background: #fff;
}
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  color: #333;
  line-height: 1.7;
  font-size: 15px;
}
.legal-updated { color: #999; font-size: 14px; margin-top: -8px; }
.legal-note {
  background: #fff8e6;
  border: 1px solid #f0d98a;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  margin: 20px 0 28px;
}
.legal-wrap h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  margin: 30px 0 8px;
  color: #2b2b3a;
}
.legal-wrap h3 {
  font-size: 16px;
  margin: 18px 0 6px;
  color: #444;
}
.legal-list { margin: 8px 0 8px 20px; }
.legal-list li { margin: 4px 0; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 14px;
}
.legal-table th, .legal-table td {
  border: 1px solid #e5e2f0;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
.legal-table th { background: #f5f4fb; font-weight: 700; }
/* ── Ajánlói sáv a megrendelőlapon ── */
.referral-banner {
  display: flex; align-items: flex-start; gap: 10px;
  background: #eefaf0; border: 1px solid #cfe9d6; border-radius: 12px;
  padding: 12px 14px; margin-bottom: 18px;
  font-size: 14px; line-height: 1.45; color: #2c5c38;
}
.referral-ico { font-size: 20px; line-height: 1; flex-shrink: 0; }

/* ── Letöltések oldal ── */
.dl-wrap { max-width: 760px; }
.dl-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}
.dl-empty-icon { font-size: 48px; display: block; margin-bottom: 12px; }
.dl-list { display: flex; flex-direction: column; gap: 12px; }
.dl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid #e5e2f0;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.18s, transform 0.18s;
}
.dl-item:hover {
  box-shadow: 0 4px 18px rgba(230,57,70,0.1);
  transform: translateY(-2px);
  border-color: #d0c8e8;
}
.dl-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.04em;
  color: #fff;
  background: #aaa;
}
.dl-icon--pdf  { background: #e63946; }
.dl-icon--ppt,
.dl-icon--pptx { background: #d14b1e; }
.dl-icon--doc,
.dl-icon--docx { background: #2b5cbf; }
.dl-icon--xls,
.dl-icon--xlsx { background: #1e7e34; }
.dl-icon--png,
.dl-icon--jpg,
.dl-icon--jpeg { background: #7c4dff; }
.dl-icon--zip  { background: #6d4c41; }
.dl-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dl-name {
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: #2b2b3a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dl-meta {
  font-size: 13px;
  color: #999;
}
.dl-btn {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
}
.dl-item:hover .dl-btn {
  background: var(--red-dark);
}
@media (max-width: 520px) {
  .dl-btn { display: none; }
  .dl-item { gap: 12px; padding: 14px 16px; }
}

/* ── Hírlevél oldal ── */
.nl-hero {
  background: linear-gradient(160deg, #fff8f8 0%, #fdf4ff 100%);
  padding: 64px 5vw 56px;
  text-align: center;
  border-bottom: 1px solid #f0eaf8;
}
.nl-hero-inner { max-width: 620px; margin: 0 auto; }
.nl-hero-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(230,57,70,0.18));
}
.nl-hero .section-title { margin-bottom: 12px; }
.nl-hero .section-sub { color: var(--gray); font-size: 17px; }

.nl-benefits {
  padding: 52px 5vw;
  background: #fff;
}
.nl-benefits-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.nl-benefit {
  background: #fafafa;
  border: 1px solid #ede9f8;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
}
.nl-benefit:hover {
  box-shadow: 0 6px 24px rgba(127,119,221,0.12);
  transform: translateY(-3px);
}
.nl-benefit-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.nl-benefit-title {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.nl-benefit-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.nl-form-section {
  padding: 56px 5vw 72px;
  background: var(--gray-lt);
}
.nl-form-card {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  padding: 44px 48px;
}
.nl-form-head { text-align: center; margin-bottom: 32px; }
.nl-form-title {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.nl-form-subtitle {
  font-size: 15px;
  color: var(--gray);
}
.nl-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.nl-field { display: flex; flex-direction: column; gap: 6px; }
.nl-field label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}
.nl-field input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d9d6ec;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--black);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.nl-field input:focus {
  outline: none;
  border-color: #7F77DD;
  box-shadow: 0 0 0 3px rgba(127,119,221,0.15);
}
.nl-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(230,57,70,0.3);
}
.nl-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.4);
}
.nl-privacy {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 18px;
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}
.nl-privacy a { color: #7F77DD; text-decoration: underline; }
.nl-privacy a:hover { color: #534AB7; }

@media (max-width: 700px) {
  .nl-benefits-inner { grid-template-columns: 1fr; gap: 16px; }
  .nl-form-card { padding: 32px 24px; }
  .nl-hero { padding: 48px 5vw 40px; }
  .nl-hero-icon { font-size: 44px; }
}

/* ── Hozzájárulás jelölőnégyzet a megrendelési űrlapon ── */
.order-form .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 4px;
  font-size: 14px;
  line-height: 1.45;
}
.order-form .consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: #7F77DD;
  cursor: pointer;
}
.order-form .consent-row a {
  color: #7F77DD;
  text-decoration: underline;
}
