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

  :root {
    --ink: #0d1117;
    --paper: #f8f6f1;
    --cream: #ede9e0;
    --accent: #1a5c38;
    --accent-light: #2e7d4f;
    --accent-glow: #3aaa6d;
    --muted: #6b7280;
    --border: rgba(13,17,23,0.1);
    --serif: Georgia, 'Times New Roman', serif;
    --body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem clamp(1.25rem, 3vw, 3rem);
    background: rgba(248,246,241,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: padding .3s;
  }
  .nav-logo {
    font-family: var(--serif);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -.02em;
    color: var(--ink);
    text-decoration: none;
    display: flex; align-items: center; gap: .5rem;
    flex: 0 0 auto;
  }
  .nav-logo span {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    width: 28px; height: 28px;
    border-radius: 6px;
    text-align: center;
    line-height: 28px;
    font-size: .85rem;
    font-weight: 800;
  }
  .nav-links {
    display: flex; align-items: center; justify-content: flex-end; gap: clamp(.45rem, .8vw, .95rem);
    list-style: none;
    min-width: 0;
  }
  .nav-links a {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .015em;
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--muted);
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a.nav-sale-link,
  .mobile-nav-link.nav-sale-link {
    color: #2563eb;
    font-weight: 800;
  }
  .nav-links a.nav-sale-link:hover,
  .mobile-nav-link.nav-sale-link:hover { color: #1d4ed8; }
  .nav-links a.nav-rapid-link,
  .mobile-nav-link.nav-rapid-link {
    color: #dc2626;
    font-weight: 800;
  }
  .nav-links a.nav-rapid-link:hover,
  .mobile-nav-link.nav-rapid-link:hover { color: #b91c1c; }
  .nav-links a.nav-contact-link,
  .mobile-nav-link.nav-contact-link {
    color: var(--accent);
    font-weight: 800;
  }
  .nav-links a.nav-contact-link:hover,
  .mobile-nav-link.nav-contact-link:hover { color: var(--accent-glow); }
  .nav-cta {
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: .55rem 1.3rem !important;
    border-radius: 50px !important;
    font-size: .82rem !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    transition: background .2s, transform .15s !important;
  }
  .nav-cta:hover { background: var(--accent) !important; transform: translateY(-1px); }
  .nav-cart-link {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.7);
    color: var(--ink) !important;
    transition: background .2s, color .2s, transform .15s, box-shadow .2s, border-color .2s;
  }
  .nav-cart-link svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .nav-cart-link:hover {
    background: #fff;
    border-color: rgba(26,92,56,.28);
    color: var(--accent) !important;
    transform: translateY(-1px);
  }
  .nav-cart-link.has-items {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(26,92,56,.24);
  }
  .cart-count {
    position: absolute;
    right: -4px;
    bottom: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    border: 2px solid var(--paper);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: .66rem;
    font-weight: 900;
    line-height: 1;
  }
  .cart-empty-bubble {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: max-content;
    max-width: 190px;
    padding: .62rem .8rem;
    border-radius: 12px;
    border: 1px solid rgba(26,92,56,.16);
    background: #fffaf4;
    color: var(--ink);
    box-shadow: 0 12px 28px rgba(13,17,23,.12);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 120;
  }
  .cart-empty-bubble::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #fffaf4;
    border-left: 1px solid rgba(26,92,56,.16);
    border-top: 1px solid rgba(26,92,56,.16);
    transform: rotate(45deg);
  }
  .show-empty-bubble .cart-empty-bubble {
    opacity: 1;
    transform: translateY(0);
  }
  .has-items .cart-count,
  .mobile-cart-link.has-items .cart-count {
    display: inline-flex;
  }
  .mobile-cart-link {
    position: relative;
    justify-content: center;
    gap: .45rem;
  }
  .mobile-cart-count {
    position: static;
    border-color: #fff;
    min-width: 22px;
    height: 22px;
    font-size: .72rem;
  }
  .mobile-cart-link.has-items {
    color: var(--accent) !important;
    font-weight: 900;
  }
  .mobile-cart-empty-bubble {
    top: auto;
    right: 50%;
    bottom: calc(100% + 10px);
    transform: translate(50%, 4px);
  }
  .mobile-cart-empty-bubble::before {
    top: auto;
    bottom: -6px;
    right: calc(50% - 5px);
    border: 0;
    border-right: 1px solid rgba(26,92,56,.16);
    border-bottom: 1px solid rgba(26,92,56,.16);
  }
  .show-empty-bubble .mobile-cart-empty-bubble {
    transform: translate(50%, 0);
  }

  @media (max-width: 1180px) {
    .nav-links { gap: .55rem; }
    .nav-links .nav-secondary { display: none; }
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 8rem 4rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 85% 40%, rgba(26,92,56,.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 10% 80%, rgba(26,92,56,.05) 0%, transparent 50%);
    pointer-events: none;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .4;
    pointer-events: none;
  }
  .hero-inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-glow);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.7); }
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }
  .hero p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
  }
  .hero-trust {
    display: flex; flex-wrap: wrap; gap: .65rem;
    margin-top: 1.2rem;
  }
  .hero-trust span {
    background: rgba(255,255,255,.72);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .42rem .85rem;
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500;
  }
  .barion-home-banner {
    display: inline-flex;
    flex-direction: column;
    gap: .35rem;
    margin-top: 1rem;
    padding: .7rem .85rem;
    background: rgba(255,255,255,.78);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(13,17,23,.06);
  }
  .barion-home-banner img {
    display: block;
    width: min(280px, 74vw);
    height: auto;
  }
  .barion-home-banner small {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 500;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--accent);
    color: #fff;
    padding: .9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(26,92,56,.3);
  }
  .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26,92,56,.4);
  }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: .5rem;
    background: transparent;
    color: var(--ink);
    padding: .9rem 2rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    transition: border-color .2s, background .2s, transform .15s;
  }
  .btn-secondary:hover {
    border-color: var(--ink);
    background: var(--cream);
    transform: translateY(-2px);
  }
  .hero-right {
    display: flex; flex-direction: column; gap: 1.2rem;
  }
  .stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex; align-items: center; gap: 1.5rem;
    box-shadow: 0 2px 12px rgba(13,17,23,.04);
    transition: transform .2s, box-shadow .2s;
    animation: fadeUp .6s ease both;
  }
  .stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(13,17,23,.08); }
  .stat-card:nth-child(1) { animation-delay: .1s; }
  .stat-card:nth-child(2) { animation-delay: .2s; }
  .stat-card:nth-child(3) { animation-delay: .3s; }
  .stat-card:nth-child(4) { animation-delay: .4s; }
  @keyframes fadeUp {
    from { opacity:0; transform: translateY(20px); }
    to { opacity:1; transform: translateY(0); }
  }
  .stat-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .stat-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
  }
  .stat-label {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 400;
    margin-top: .2rem;
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: 6rem 4rem; }
  .section-tag {
    display: inline-block;
    font-family: var(--body);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .85rem;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: .95rem;
  }
  .section-sub {
    font-family: var(--body);
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 3.5rem;
  }
  .max-w { max-width: 1200px; margin: 0 auto; }

  /* ─── WHY ─── */
  #miert { background: var(--ink); }
  #miert .section-tag { color: var(--accent-glow); }
  #miert .section-title { color: var(--paper); }
  #miert .section-sub { color: rgba(248,246,241,.55); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.08);
    border-radius: 20px;
    overflow: hidden;
  }
  .why-item {
    background: rgba(255,255,255,.03);
    padding: 2.5rem 2rem;
    transition: background .25s;
    border-right: 1.5px solid rgba(255,255,255,.07);
  }
  .why-item:last-child { border-right: none; }
  .why-item:hover { background: rgba(255,255,255,.07); }
  .why-ico {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .why-item h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: .6rem;
    letter-spacing: -.01em;
  }
  .why-item p {
    font-size: .88rem;
    color: rgba(248,246,241,.5);
    line-height: 1.65;
    font-weight: 300;
  }
  .why-akkred {
    margin-top: 2.5rem;
    display: flex; align-items: center; gap: .8rem;
    background: rgba(58,170,109,.1);
    border: 1px solid rgba(58,170,109,.25);
    border-radius: 50px;
    padding: .7rem 1.5rem;
    width: fit-content;
  }
  .why-akkred span:first-child {
    font-size: 1.2rem;
  }
  .why-akkred span:last-child {
    font-size: .82rem;
    color: var(--accent-glow);
    font-weight: 500;
    letter-spacing: .02em;
  }

  /* ─── COURSES ─── */
  #tanfolyamok {
    background: var(--paper);
  }
  #kepzesi-fokartyak,
  #vallalati-trening {
    scroll-margin-top: 92px;
  }
  .courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .course-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 3.5rem 2.5rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(13,17,23,.1);
    border-color: var(--accent);
  }
  .course-card.featured {
    background: var(--ink);
    border-color: transparent;
    padding-top: 3.5rem;
  }
  .course-card.featured .course-title,
  .course-card.featured .course-price,
  .course-card.featured .course-price-label { color: var(--paper); }
  .course-card.featured .course-desc { color: rgba(248,246,241,.55); }
  .course-card.featured .course-feature { color: rgba(248,246,241,.75); }
  .course-card.featured .course-feature::before { background: var(--accent-glow); }
  .course-card.featured .btn-course {
    background: var(--accent);
    color: #fff;
  }
  .course-card.featured .btn-course:hover { background: var(--accent-light); }
  .course-tag-accent {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-glow);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 50px;
    white-space: nowrap;
  }
  .course-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: .8rem;
  }
  .course-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 1.8rem;
  }
  .course-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex; flex-direction: column; gap: .6rem;
  }
  .course-feature {
    font-size: .88rem;
    color: var(--ink);
    display: flex; align-items: center; gap: .75rem;
    font-weight: 400;
  }
  .course-feature::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }
  .course-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
  }
  .course-card.featured .course-footer { border-color: rgba(255,255,255,.1); }
  .course-price {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em;
  }
  .course-sale-price {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .32rem;
    max-width: 260px;
    padding: .55rem .7rem;
    border: 1px solid rgba(37, 99, 235, .24);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(239, 246, 255, .98), rgba(219, 234, 254, .98));
    color: #1d4ed8;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .14);
  }
  .course-sale-price .sale-price {
    font-size: 1.28rem;
  }
  .course-card.featured .course-sale-price {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
  }
  .course-price-label {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .1rem;
  }
  .btn-course {
    display: inline-flex; align-items: center; gap: .4rem;
    background: linear-gradient(135deg, #238452, #176a42);
    color: #fff;
    padding: .65rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(23,106,66,.20);
    transition: background .2s, transform .15s, box-shadow .2s;
  }
  .btn-course:hover {
    background: linear-gradient(135deg, #1f784b, #125c38);
    box-shadow: 0 14px 30px rgba(23,106,66,.28);
    transform: translateY(-1px);
  }
  .btn-dl {
    display: inline-flex; align-items: center; gap: .4rem;
    text-decoration: none;
    font-size: .82rem;
    color: var(--accent);
    font-weight: 700;
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: .4rem .95rem;
    margin-top: .6rem;
    transition: background .2s, color .2s;
  }
  .btn-dl:hover { background: var(--accent); color: #fff; }

  .rapid-section {
    margin: 0;
    scroll-margin-top: 92px;
  }
  .rapid-badge {
    display: inline-flex;
    width: fit-content;
    background: #e8f5ee;
    color: var(--accent);
    border-radius: 50px;
    padding: .25rem .7rem;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .8rem;
  }
  .rapid-card h3 {
    font-family: var(--serif);
    font-size: 1.28rem;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: .35rem;
  }
  .rapid-card p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.55;
    font-weight: 400;
  }
  .rapid-topics {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem .7rem;
    margin-top: .1rem;
  }
  .rapid-topics li {
    position: relative;
    padding-left: 1rem;
    font-size: .78rem;
    color: var(--ink);
    line-height: 1.45;
  }
  .rapid-topics li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
  }
  .rapid-btn { margin-top: auto; justify-content: center; }
  .rapid-course-card .rapid-badge { margin-bottom: .45rem; }
  .rapid-topics-card {
    margin: .2rem 0 .4rem;
  }

  .decision-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: -.5rem 0 2rem;
  }
  .decision-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.35rem;
    box-shadow: 0 2px 14px rgba(13,17,23,.04);
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 1rem;
    align-items: start;
  }
  .decision-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--cream);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem !important;
  }
  .decision-item strong {
    font-family: var(--serif);
    font-size: 1.05rem;
    line-height: 1.25;
    color: var(--ink);
  }
  .decision-item div span {
    display: block;
    margin-top: .4rem;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
  }

  /* vállalati sáv */
  .corp-banner {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem;
  }
  .corp-banner h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .4rem;
  }
  .corp-banner p {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 300;
  }
  .corp-pills {
    display: flex; gap: .8rem; flex-wrap: wrap;
  }
  .pill {
    display: flex; align-items: center; gap: .4rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .45rem 1rem;
    font-size: .8rem;
    font-weight: 500;
    white-space: nowrap;
  }
  .corporate-deep-dive {
    margin-top: 1.5rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .corporate-deep-dive h3 {
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: .8rem;
  }
  .corporate-deep-dive p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.75;
    font-weight: 300;
  }
  .corp-inline-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--accent);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
  }
  .corp-inline-link:hover { color: var(--accent-light); }
  .corp-benefit-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
  }
  .corp-benefit-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
  }
  .corp-benefit-item span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: .05rem;
  }
  .corp-benefit-item p {
    margin: 0;
    color: var(--ink);
    font-size: .9rem;
    line-height: 1.55;
    font-weight: 500;
  }

  /* ─── HOW ─── */
  .steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 2.2rem; left: 2rem; right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
  }
  .step {
    position: relative;
  }
  .step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-weight: 800;
    font-size: .9rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
    transition: background .2s, border-color .2s;
  }
  .step:hover .step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .step h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: .6rem;
  }
  .step p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
  }

  /* ─── PATHS LAYOUT ─── */
  .paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
  }
  .path-col {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .path-col-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: .25rem;
  }
  .path-col-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .path-steps {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    position: relative;
    padding-left: 1.5rem;
  }
  .path-steps::before {
    content: '';
    position: absolute;
    left: .65rem;
    top: 1.3rem;
    bottom: 1.3rem;
    width: 1px;
    background: var(--border);
  }
  .path-step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .2rem;
  }
  .path-step::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: .4rem;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--border);
    transition: border-color .2s, background .2s;
  }
  .path-step:first-child::before {
    background: var(--accent);
    border-color: var(--accent);
  }
  .path-step-title {
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink);
  }
  .path-step-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 300;
  }
  .path-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .3rem;
  }
  .path-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .03em;
    padding: .4rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    cursor: pointer;
    border: none;
  }
  .path-btn-primary {
    background: var(--accent) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
  }
  .path-btn-primary:hover { background: var(--accent-light) !important; transform: translateY(-1px); }
  .path-btn-outline {
    background: transparent !important;
    color: var(--accent) !important;
    border: 1.5px solid var(--accent) !important;
    box-shadow: none !important;
  }
  .path-btn-outline:hover { background: rgba(26,92,56,.07) !important; transform: translateY(-1px); }
  .path-divider {
    font-size: .75rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    align-self: flex-start;
    padding: .2rem .6rem;
    background: var(--border);
    border-radius: 50px;
  }

  /* ─── STEP QUIZ TRIGGER ─── */
  .step-quiz-trigger {
    cursor: pointer;
    background: rgba(26,92,56,.04);
    border: 1.5px solid rgba(26,92,56,.15);
    border-radius: 16px;
    padding: 1.4rem;
    transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
    outline: none;
  }
  .step-quiz-trigger:hover,
  .step-quiz-trigger:focus-visible {
    background: rgba(26,92,56,.09);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(26,92,56,.15);
  }
  .step-quiz-trigger .step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .step-quiz-badge {
    display: inline-block;
    font-family: var(--body);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: var(--accent-glow);
    color: #fff;
    padding: .18rem .55rem;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: .4rem;
    transition: background .2s;
  }
  .step-quiz-trigger:hover .step-quiz-badge { background: var(--accent); }

  /* ─── REVIEWS ─── */
  #velemenyek { background: var(--paper); }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .review-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform .2s, box-shadow .2s;
  }
  .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13,17,23,.07);
  }
  .stars { color: var(--accent-glow); font-size: 1rem; margin-bottom: 1.2rem; letter-spacing: .1em; }
  .review-text {
    font-size: .95rem;
    color: var(--ink);
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  .reviewer {
    display: flex; align-items: center; gap: .8rem;
  }
  .reviewer-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  .reviewer-name {
    font-weight: 600;
    font-size: .88rem;
  }
  .reviewer-role {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 300;
  }

  /* ─── ABOUT ─── */
  #oktato {
    background: var(--ink);
    overflow: hidden;
    position: relative;
  }
  #oktato::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -20%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,92,56,.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
    position: relative; z-index: 1;
  }
  .about-img-wrap {
    position: relative;
  }
  .about-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
    filter: grayscale(20%);
  }
  .about-img-badge {
    position: absolute;
    bottom: -1rem; right: -1rem;
    background: var(--accent);
    color: #fff;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(26,92,56,.4);
  }
  .about-img-badge strong {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 800;
  }
  .about-img-badge span {
    font-size: .75rem;
    opacity: .8;
    font-weight: 300;
  }
  #oktato .section-tag { color: var(--accent-glow); }
  #oktato .section-title { color: var(--paper); }
  .about-body {
    font-size: .95rem;
    color: rgba(248,246,241,.6);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
  }
  .about-body strong { color: var(--paper); font-weight: 600; }
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin: 1.2rem 0 1.6rem;
  }
  .proof-grid div {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 14px;
    padding: 1rem;
  }
  .proof-grid strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--paper);
    line-height: 1.1;
    margin-bottom: .35rem;
  }
  .proof-grid span {
    display: block;
    font-size: .74rem;
    color: rgba(248,246,241,.58);
    line-height: 1.45;
  }
  .about-tags {
    display: flex; flex-wrap: wrap; gap: .6rem;
    margin-bottom: 2.5rem;
  }
  .about-method {
    display: grid;
    gap: .75rem;
    margin: 1.35rem 0 1.6rem;
  }
  .about-method div {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 1rem 1.1rem;
  }
  .about-method strong {
    color: var(--paper);
    display: block;
    font-size: .92rem;
    margin-bottom: .2rem;
  }
  .about-method span {
    color: rgba(248,246,241,.62);
    display: block;
    font-size: .84rem;
    line-height: 1.55;
  }
  .about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.2rem;
  }
  .about-actions .btn-secondary {
    border-color: rgba(248,246,241,.28);
    color: var(--paper);
  }
  .about-actions .btn-secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(248,246,241,.46);
  }
  .tag {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .8rem;
    color: rgba(248,246,241,.75);
    font-weight: 400;
  }

  /* ─── FAQ ─── */
  #gyik { background: var(--paper); }
  .faq-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
  .faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item:hover { border-color: var(--accent); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.8rem;
    text-align: left;
    font-family: var(--body);
    font-size: .95rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
  }
  .faq-q .faq-arrow {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    transition: transform .25s, background .2s;
  }
  .faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--accent); color: #fff; }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    padding: 0 1.8rem;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }
  .faq-item.open .faq-a {
    max-height: 600px;
    padding-bottom: 1.4rem;
  }

  /* ─── CONTACT ─── */
  #kapcsolat {
    background: var(--cream);
  }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  }
  .contact-info h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--ink);
  }
  .contact-info p {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }
  .contact-details {
    display: flex; flex-direction: column; gap: 1rem;
  }
  .contact-use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: -1.2rem 0 1.6rem;
  }
  .contact-use-cases button {
    background: rgba(26,92,56,.08);
    border: 1px solid rgba(26,92,56,.12);
    border-radius: 999px;
    color: var(--accent);
    cursor: pointer;
    font-family: var(--body);
    font-size: .78rem;
    font-weight: 800;
    padding: .45rem .7rem;
    transition: background .2s, border-color .2s, color .2s, transform .15s;
  }
  .contact-use-cases button:hover,
  .contact-use-cases button.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
  }
  .contact-topic-hint {
    display: none;
    margin-top: .55rem;
    border: 1px solid rgba(37,99,235,.16);
    border-radius: 12px;
    background: #f5f9ff;
    color: #475569;
    padding: .72rem .82rem;
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.55;
  }
  .contact-row {
    display: flex; align-items: center; gap: 1rem;
    font-size: .9rem;
  }
  .contact-ico {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--paper);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .contact-ico svg,
  .footer-social-link svg {
    display: block;
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 18px;
  }
  .contact-ico-facebook svg,
  .footer-social-link svg {
    fill: currentColor;
    stroke: none;
  }
  .contact-ico-far {
    font-size: .62rem !important;
    letter-spacing: .04em;
  }
  .contact-row a { color: var(--ink); text-decoration: none; }
  .contact-row a:hover { color: var(--accent); }
  .contact-row a,
  .contact-row span {
    color: var(--ink);
    font-family: var(--body);
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.35;
  }
  .contact-row .contact-legal-value {
    color: var(--ink);
    font-weight: 600;
  }
  .contact-reformed {
    align-items: stretch;
  }
  .contact-reformed .contact-ico {
    width: 44px;
    height: 44px;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .04em;
    color: var(--accent);
  }
  .contact-reformed .form-wrap {
    box-shadow: 0 20px 60px rgba(13,17,23,.08);
  }
  .form-wrap {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
  }
  .form-intro {
    background: #f8faf9;
    border: 1px solid rgba(26,92,56,.12);
    border-radius: 14px;
    margin-bottom: 1.2rem;
    padding: 1rem;
  }
  .form-intro strong {
    display: block;
    font-family: var(--serif);
    font-size: 1rem;
    margin-bottom: .25rem;
  }
  .form-intro span {
    color: var(--muted);
    display: block;
    font-size: .84rem;
    line-height: 1.55;
  }
  .contact-assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
    margin: 0 0 1.1rem;
  }
  .contact-assurance div {
    background: #fbfaf7;
    border: 1px solid rgba(26,92,56,.1);
    border-radius: 8px;
    padding: .72rem .75rem;
  }
  .contact-assurance strong {
    color: var(--accent);
    display: block;
    font-size: .76rem;
    font-weight: 850;
    line-height: 1.25;
    margin-bottom: .22rem;
  }
  .contact-assurance span {
    color: #526071;
    display: block;
    font-size: .72rem;
    font-weight: 550;
    line-height: 1.42;
  }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
  }
  .form-group input:not([type="checkbox"]):not([type="radio"]),
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: .85rem 1.1rem;
    font-family: var(--body);
    font-size: .92rem;
    color: var(--ink);
    outline: none;
    transition: border-color .2s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
    background: #fff;
  }
  .form-group textarea { resize: none; height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .btn-submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-family: var(--body);
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(26,92,56,.3);
  }
  .btn-submit:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26,92,56,.4);
  }
  @media (max-width: 620px) {
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink);
    padding: 3rem 4rem;
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(260px, .85fr);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-brand p {
    color: rgba(248,246,241,.46);
    font-size: .8rem;
    line-height: 1.6;
    margin-top: .5rem;
    max-width: 320px;
  }
  .footer-logo {
    font-family: var(--serif);
    font-weight: 800;
    color: var(--paper);
    font-size: .95rem;
    display: flex; align-items: center; gap: .5rem;
    text-decoration: none;
  }
  .footer-logo span {
    background: none;
    border-radius: 0;
    color: var(--paper);
    display: inline;
    font-size: .95rem;
    line-height: 1.2;
    text-align: left;
    width: auto;
    height: auto;
  }
  .footer-logo img {
    width: 24px; height: 24px;
    border-radius: 5px;
    object-fit: cover;
  }
  .footer-meta {
    font-size: .78rem;
    color: rgba(248,246,241,.3);
    text-align: center;
    line-height: 1.8;
  }
  .footer-meta a {
    color: rgba(248,246,241,.62);
    text-decoration: none;
  }
  .footer-meta a:hover {
    color: var(--paper);
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.1rem;
    justify-content: flex-end;
  }
  .footer-links a {
    align-items: center;
    display: inline-flex;
    gap: .35rem;
    font-size: .78rem;
    color: rgba(248,246,241,.4);
    text-decoration: none;
    transition: color .2s;
  }
  .footer-social-link {
    color: rgba(248,246,241,.72) !important;
    font-weight: 800;
  }
  .footer-links a:hover { color: var(--paper); }

  /* ─── HAMBURGER ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none;
    cursor: pointer; padding: 6px;
    border-radius: 8px;
    transition: background .2s;
    z-index: 200;
  }
  .nav-hamburger:hover { background: var(--cream); }
  .nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
    transform-origin: center;
  }
  .nav-hamburger span:nth-child(2) { width: 70%; margin-left: auto; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 150;
    background: rgba(248,246,241,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    padding: 5rem 2rem 3rem;
  }
  .mobile-nav-overlay.open { display: flex; }
  .mobile-nav-overlay a {
    font-family: var(--serif);
    font-size: clamp(1.28rem, 5.2vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -.02em;
    text-decoration: none;
    color: var(--ink);
    transition: color .2s;
    text-align: center;
  }
  .mobile-nav-overlay a:hover, .mobile-nav-overlay a:active { color: var(--accent); }
  .mobile-nav-cta {
    margin-top: 1rem;
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-family: var(--body) !important;
    letter-spacing: .04em;
  }
  .mobile-nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    section { padding: 4rem 1.2rem; }
    .hero { padding: 6rem 1.2rem 3.5rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero p { font-size: 1rem; margin-bottom: 2rem; }
    .hero-actions { gap: .75rem; }
    .btn-primary, .btn-secondary { padding: .85rem 1.6rem; font-size: .9rem; }
    .stat-card { padding: 1.2rem 1.4rem; }
    .stat-num { font-size: 1.6rem; }
    .hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .why-grid { grid-template-columns: 1fr 1fr; }
    .why-item { padding: 1.8rem 1.4rem; }

    .courses-grid { grid-template-columns: 1fr; }
    .course-card { padding: 2rem 1.5rem; }
    .rapid-topics { grid-template-columns: 1fr; }
    .decision-strip { grid-template-columns: 1fr; }
    .corp-banner { flex-direction: column; align-items: flex-start; padding: 1.8rem 1.5rem; }
    .corporate-deep-dive { grid-template-columns: 1fr; padding: 1.8rem 1.5rem; }

    .steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .steps::before { display: none; }
    .paths { grid-template-columns: 1fr; }

    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { padding: 1.5rem; }

    .about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .proof-grid { grid-template-columns: 1fr; }
    .about-img { aspect-ratio: 4/3; }
    .about-img-badge { right: 0; bottom: -1rem; }

    .faq-grid { grid-template-columns: 1fr; }
    .faq-q { padding: 1.2rem 1.4rem; font-size: .9rem; }

    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-assurance { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-wrap { padding: 1.8rem 1.4rem; }

    footer {
      grid-template-columns: 1fr;
      align-items: flex-start;
      padding: 2.5rem 1.5rem; gap: 1.2rem;
    }
    .footer-meta { text-align: left; }
    .footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 1rem; }

    /* Touch-friendly tap targets */
    .btn-signup { padding: .75rem 1.4rem; min-height: 44px; }
    .btn-course { padding: .75rem 1.4rem; min-height: 44px; }
    .btn-primary, .btn-secondary { min-height: 48px; }
    .faq-q { min-height: 56px; }
    .nav-cta { min-height: 40px; }

    /* Modal mobilon teljes szélességű */
    .modal-overlay { padding: 4.5rem 1rem 1rem; align-items: flex-start; }
    .modal { padding: 1.8rem 1.3rem; border-radius: 20px; max-height: calc(100vh - 5.5rem); overflow-y: auto; }
    .modal-reassurance { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .hero-right { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .paths { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .section-title { font-size: 1.7rem; }
    .corp-pills { gap: .5rem; }
    .pill { font-size: .75rem; padding: .4rem .8rem; }
    .about-img-badge { position: static; margin-top: 1rem; display: inline-block; border-radius: 12px; }
    .uc-title { font-size: 1.2rem; }
    .uc-date { font-size: 1.3rem; }
    .modal-header { margin-bottom: 1.2rem; }
    .modal-title { font-size: 1.35rem; }
    .modal-course-info { padding: .9rem; }
    .modal-tech-grid { grid-template-columns: 1fr; }
    .modal-admin-details { padding: .85rem; }
  }

  /* ─── UPCOMING COURSES ─── */
  #idopontok { background: var(--cream); }
  .upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  @media (max-width: 900px) {
    .upcoming-grid,
    .schedule-grid,
    .sale-upcoming-grid,
    .rapid-upcoming-grid {
      grid-template-columns: 1fr;
      max-width: 100%;
    }
    .upcoming-card {
      min-width: 0;
    }
  }
  .upcoming-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .upcoming-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(13,17,23,.1);
    border-color: var(--accent);
  }
  .upcoming-card.full {
    opacity: .7;
    pointer-events: none;
  }
  .uc-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: 50px;
    width: fit-content;
  }
  .uc-badge.kezdo  { background: #e8f5ee; color: #1a5c38; }
  .uc-badge.kozep  { background: #fff8e1; color: #b45309; }
  .uc-badge.halado { background: #f0f4ff; color: #3b5bdb; }
  .uc-badge.open-badge { background: #e8f5ee; color: #1a5c38; }
  .uc-badge.hurry-badge { background: #fff7ed; color: #c2410c; }
  .uc-badge.full-badge { background: #fee2e2; color: #b91c1c; }
  .uc-date {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink);
    line-height: 1.15;
  }
  .uc-date span {
    display: block;
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0;
    margin-top: .2rem;
  }
  .uc-header {
    display: flex; align-items: flex-start; justify-content: space-between; gap: .8rem;
  }
  .uc-title {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.2;
  }
  .uc-meta {
    display: flex; flex-direction: column; gap: .45rem;
  }
  .uc-row {
    display: flex; align-items: center; gap: .6rem;
    font-size: .83rem; color: var(--muted); font-weight: 300;
  }
  .uc-row strong { color: var(--ink); font-weight: 500; }
  .deadline-row {
    color: #7c2d12;
  }
  .deadline-note {
    display: grid;
    gap: .12rem;
    width: 100%;
    padding: .5rem .65rem;
    border: 1px solid rgba(194, 65, 12, .16);
    border-radius: 12px;
    background: #fff7ed;
  }
  .deadline-note > span {
    color: #c2410c;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.1;
    text-transform: uppercase;
  }
  .deadline-note strong {
    color: #7c2d12;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.25;
  }
  .deadline-note small {
    color: #b45309;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.25;
  }
  .uc-price-row {
    align-items: flex-start;
  }
  .sale-callout {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .28rem;
    padding: .45rem .65rem;
    border: 1px solid rgba(37, 99, 235, .22);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(239, 246, 255, .95), rgba(219, 234, 254, .95));
    color: #1d4ed8;
    font-weight: 800;
    line-height: 1.25;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .12);
  }
  .sale-label {
    display: inline-flex;
    align-items: center;
    padding: .16rem .42rem;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .old-price { color: #1e3a8a; text-decoration: line-through; text-decoration-thickness: 1.5px; text-decoration-color: #dc2626; font-size: 1.18em; font-weight: 900; }
  .sale-price { color: #dc2626 !important; font-size: 1.08rem; font-weight: 900 !important; }
  .sale-empty,
  .sale-alert-box {
    grid-column: 1 / -1;
    padding: 2rem;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #fff);
    text-align: center;
    box-shadow: 0 16px 36px rgba(37, 99, 235, .08);
  }
  .sale-empty h3,
  .sale-alert-box h3 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.45rem;
    margin-bottom: .45rem;
  }
  .sale-empty p,
  .sale-alert-box p { color: var(--muted); margin-bottom: 1rem; }
  .sale-alert-form {
    display: flex;
    justify-content: center;
    gap: .7rem;
    flex-wrap: wrap;
  }
  .sale-alert-form input {
    min-width: 260px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .85rem 1.1rem;
    font: inherit;
    outline: none;
  }
  .sale-alert-form input:focus { border-color: var(--accent); }
  .sale-course-card { border-color: rgba(220, 38, 38, .22); }
  .uc-spots {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    flex-wrap: wrap;
  }
  .spots-bar-wrap {
    flex: 1; min-width: 100px;
  }
  .spots-label {
    font-size: .75rem; color: var(--muted); margin-bottom: .35rem; font-weight: 400;
  }
  .spots-bar {
    height: 5px; background: var(--cream); border-radius: 99px; overflow: hidden;
  }
  .spots-fill {
    height: 100%; border-radius: 99px;
    background: linear-gradient(90deg, var(--accent-glow), var(--accent));
    transition: width .5s ease;
  }
  .btn-signup {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--accent);
    color: #fff;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: var(--body);
    transition: background .2s, transform .15s;
    white-space: nowrap;
    text-decoration: none;
  }
  .btn-signup:hover { background: var(--accent-light); transform: translateY(-1px); }
  .btn-signup:disabled, .btn-signup.disabled {
    background: var(--muted);
    cursor: not-allowed;
    transform: none;
  }
  /* ─ Vélemény carousel ─ */
  .reviews-carousel-wrap {
    position: relative; overflow: hidden; margin: 0 -1rem;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  }
  .reviews-track {
    display: flex; gap: 1rem; width: max-content;
    animation: reviewsScroll 32s linear infinite;
    padding: .5rem 1rem;
  }
  .reviews-track:hover { animation-play-state: paused; }
  @keyframes reviewsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  /* A másodlagos sáv kicsit lassabban görög, hogy ne legyen egyhangú */
  .reviews-track-alt { animation-duration: 42s; }
  /* Mozgáscsökkentés kérése esetén: ne mozogjon magától, legyen kézzel görgethető */
  @media (prefers-reduced-motion: reduce) {
    .reviews-carousel-wrap {
      overflow-x: auto;
      scrollbar-width: thin;
      -webkit-overflow-scrolling: touch;
    }
    .reviews-track { animation: none; }
  }
  .review-card {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 1.2rem 1.4rem; width: 280px; flex-shrink: 0;
    display: flex; flex-direction: column; gap: .6rem;
    box-shadow: 0 2px 12px rgba(13,17,23,.05);
    transition: box-shadow .2s, transform .2s;
  }
  .review-card:hover { box-shadow: 0 6px 24px rgba(13,17,23,.1); transform: translateY(-2px); }
  .review-card-header { display: flex; align-items: center; gap: .65rem; }
  .review-avatar {
    width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
    flex-shrink: 0; background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem;
  }
  .review-avatar img { width:36px; height:36px; border-radius:50%; object-fit:cover; }
  .review-author-name { font-weight: 700; font-size: .88rem; color: var(--ink); }
  .review-date { font-size: .72rem; color: var(--muted); }
  .review-source { margin-left: auto; flex-shrink: 0; }
  .review-stars { color: #f59e0b; font-size: .9rem; letter-spacing: .05em; }
  .review-text {
    font-size: .82rem; color: #374151; line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /* Vélemény-kártya képzés-címke (a karusszelben használt) */
  .tc-kepzes {
    font-size: .68rem; color: var(--accent); font-weight: 600;
    background: #e8f5ee; border-radius: 50px;
    padding: .1rem .45rem; display: inline-block; margin-top: .15rem;
  }

  .upcoming-note {
    text-align: center;
    font-size: .88rem;
    color: var(--muted);
    margin-top: 1rem;
    font-weight: 300;
  }
  .upcoming-note a { color: var(--accent); text-decoration: none; font-weight: 500; }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(13,17,23,.55);
    backdrop-filter: blur(6px);
    align-items: flex-start; justify-content: center;
    padding: 5.5rem 1.5rem 1.5rem;
    overflow-y: auto;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 520px;
    position: relative;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(13,17,23,.18);
    animation: modalIn .3s ease;
  }
  @keyframes modalIn {
    from { opacity:0; transform: translateY(20px) scale(.97); }
    to { opacity:1; transform: none; }
  }
  .modal-close {
    position: absolute; top: 1.2rem; right: 1.4rem;
    background: var(--cream); border: none; cursor: pointer;
    width: 34px; height: 34px; border-radius: 50%;
    font-size: 1.1rem; color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
  }
  .modal-close:hover { background: var(--border); color: var(--ink); }
  .modal-header {
    margin-bottom: 1.8rem;
  }
  .modal-tag {
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--accent); margin-bottom: .5rem;
  }
  .modal-title {
    font-family: var(--serif);
    font-size: 1.55rem; font-weight: 800; letter-spacing: -.02em;
    color: var(--ink); line-height: 1.2;
  }
  .modal-course-info {
    background: var(--cream);
    border-radius: 12px;
    padding: 1rem 1.3rem;
    margin-bottom: .85rem;
    font-size: .88rem;
    color: var(--muted);
    display: flex; flex-direction: column; gap: .35rem;
  }
  .modal-course-info strong { color: var(--ink); font-weight: 600; }
  .modal-reassurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
    margin-bottom: 1.1rem;
  }
  .modal-reassurance span {
    background: rgba(26,92,56,.07);
    border: 1px solid rgba(26,92,56,.12);
    border-radius: 999px;
    color: var(--accent);
    font-size: .68rem;
    font-weight: 700;
    line-height: 1.25;
    padding: .46rem .55rem;
    text-align: center;
  }
  .modal-tech-check {
    border: 1px solid rgba(26,92,56,.14);
    border-radius: 14px;
    background: #f7fbf8;
    margin: -.35rem 0 1rem;
    padding: .85rem .95rem;
  }
  .modal-tech-check summary {
    color: var(--ink);
    cursor: pointer;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .modal-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
    margin-top: .8rem;
  }
  .modal-tech-grid span {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: #374151;
    font-size: .76rem;
    font-weight: 800;
    line-height: 1.3;
    padding: .55rem .65rem;
  }
  .modal-tech-check p {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.5;
    margin-top: .75rem;
  }
  .label-note {
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
  }
  .modal-admin-details {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin: .4rem 0 1rem;
    padding: .95rem;
  }
  .modal-admin-details summary {
    color: var(--ink);
    cursor: pointer;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    list-style-position: outside;
    text-transform: uppercase;
  }
  .modal-admin-details p {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 300;
    line-height: 1.55;
    margin: .55rem 0 .85rem;
  }
  .modal-admin-details .form-row {
    margin-top: .7rem;
  }
  .modal-legal-list {
    display: grid;
    gap: .65rem;
    margin-bottom: 1rem;
  }
  .modal-legal-list .form-group {
    margin-bottom: 0;
  }
  .checkbox-line {
    align-items: flex-start;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    font-size: .84rem;
    font-weight: 400;
    gap: .7rem;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
  }
  .checkbox-line input {
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
    height: 18px;
    margin-top: .15rem;
    width: 18px;
  }
  .checkbox-line a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .required-mark {
    color: #b91c1c;
  }
  .form-error {
    color: #b91c1c;
    display: none;
    font-size: .86rem;
    font-weight: 700;
    margin: .2rem 0 1rem;
  }
  .modal-footnote {
    color: var(--muted);
    font-size: .75rem;
    font-weight: 300;
    margin-top: .8rem;
    text-align: center;
  }
  .modal-success {
    display: none;
    text-align: center;
    padding: 1rem 0;
  }
  .modal-success .success-ico {
    font-size: 3rem; margin-bottom: 1rem;
  }
  .modal-success h3 {
    font-family: var(--serif);
    font-size: 1.4rem; font-weight: 800;
    color: var(--ink); margin-bottom: .5rem;
  }
  .modal-success p {
    font-size: .92rem; color: var(--muted); font-weight: 300; line-height: 1.7;
  }

  /* Scroll animations */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ─── SKELETON ANIMÁCIÓ ─── */
  @keyframes skeletonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .45; }
  }
  @media (max-width: 900px) {
    #google-reviews-grid { grid-template-columns: 1fr !important; }
    #google-reviews-grid > div:nth-child(2),
    #google-reviews-grid > div:nth-child(3) { display: none; }
  }

  /* ─── ÚSZÓ ÉRTESÍTŐ FELIRATKOZÁS ─── */
  .floating-alert { position: fixed; right: 1.4rem; bottom: 6.2rem; z-index: 120; }
  .floating-alert-toggle {
    border: 0; border-radius: 999px; padding: .85rem 1.15rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    color: #fff; font-weight: 900; cursor: pointer;
    box-shadow:
      0 0 0 1px rgba(255,255,255,.10),
      0 12px 30px rgba(18,83,51,.34),
      0 0 22px rgba(18,83,51,.18),
      inset 0 1px 0 rgba(255,255,255,.34);
  }
  .floating-alert-panel {
    position: absolute; right: 0; bottom: 3.8rem; width: min(330px, calc(100vw - 2rem));
    padding: 1.2rem; border-radius: 18px; background: linear-gradient(145deg, #f1e2df 0%, #fbf2ef 52%, #ead8d4 100%);
    border: 1.5px solid rgba(139,86,78,.24);
    box-shadow: none;
    max-height: min(560px, calc(100vh - 18rem));
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0; transform: translateY(10px) scale(.98); pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .floating-alert.open .floating-alert-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .floating-alert-panel h3 { font-family: var(--serif); color: var(--accent); font-size: 1.2rem; margin-bottom: .35rem; }
  .floating-alert-panel p { color: var(--muted); font-size: .86rem; margin-bottom: .8rem; line-height: 1.45; }
  .floating-alert-message { border-radius: 10px; padding: .55rem .7rem; font-size: .78rem; font-weight: 700; margin-bottom: .75rem; }
  .floating-alert-message.ok { background: #dcfce7; color: #166534; }
  .floating-alert-message.error { background: #fee2e2; color: #991b1b; }
  .floating-alert-close { position:absolute; top:.7rem; right:.8rem; border:0; background:transparent; font-size:1.25rem; cursor:pointer; color:var(--muted); }
  .floating-alert-form { display:flex; flex-direction:column; gap:.7rem; }
  .floating-alert-form input[type="email"] { border:1px solid var(--border); border-radius:12px; padding:.75rem .9rem; font:inherit; }
  .floating-alert-form button[type="submit"] {
    border: 0;
    border-radius: 999px;
    padding: .78rem 1rem;
    background: linear-gradient(135deg, #238452, #176a42);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(23,106,66,.28);
  }
  .floating-alert-form button[type="submit"]:hover { background: linear-gradient(135deg, #1f784b, #125c38); }
  .alert-options { display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; }
  .alert-options label { display:inline-flex; align-items:center; gap:.35rem; padding:.4rem .6rem; border:1px solid rgba(26,92,56,.14); border-radius:999px; background:#fff; font-size:.8rem; font-weight:700; color:var(--ink); }
  .alert-options-floating { justify-content:flex-start; }
  .alert-course-picker {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(26,92,56,.14);
    border-radius: 14px;
    padding: .65rem .75rem;
  }
  .alert-course-picker summary {
    color: var(--accent);
    cursor: pointer;
    font-size: .8rem;
    font-weight: 900;
  }
  .alert-course-picker-body {
    display: grid;
    gap: .42rem;
    margin-top: .65rem;
    max-height: min(108px, 20vh);
    overflow-y: auto;
    padding-right: .25rem;
  }
  .alert-course-hint {
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.35;
  }
  .alert-course-picker-body strong {
    color: var(--muted);
    font-size: .68rem;
    letter-spacing: .08em;
    margin-top: .25rem;
    text-transform: uppercase;
  }
  .alert-course-picker-body label {
    align-items: flex-start;
    color: var(--ink);
    display: flex;
    gap: .42rem;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.3;
  }
  .alert-consent {
    align-items: flex-start;
    color: var(--muted);
    display: flex;
    gap: .5rem;
    font-size: .72rem;
    line-height: 1.35;
  }
  .alert-consent input { margin-top: .15rem; }
  .alert-consent a { color: var(--accent); font-weight: 800; text-decoration: underline; }
  .floating-alert-panel small { display:block; margin-top:.7rem; color:var(--muted); font-size:.72rem; }
  @media (max-width: 900px) {
    .floating-alert {
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
      display: flex;
      justify-content: flex-end;
      pointer-events: none;
    }
    .floating-alert-toggle,
    .floating-alert-panel {
      pointer-events: auto;
    }
    .floating-alert-toggle {
      padding: .75rem 1rem;
      box-shadow:
        0 0 0 1px rgba(255,255,255,.10),
        0 12px 30px rgba(18,83,51,.34),
        0 0 22px rgba(18,83,51,.18),
        inset 0 1px 0 rgba(255,255,255,.32);
    }
    .floating-alert-panel {
      bottom: 5.4rem;
      left: 1rem;
      overflow-y: auto;
      position: fixed;
      right: 1rem;
      top: clamp(4.75rem, 12vh, 6.5rem);
      width: auto;
    }
    .alert-course-picker-body {
      max-height: min(86px, 16vh);
    }
    body.mobile-nav-open .floating-alert,
    body.modal-open .floating-alert {
      display: none;
    }
  }


  /* ─── COOKIE SÁV ─── */
  .cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
    background: var(--ink);
    color: rgba(248,246,241,.85);
    padding: 1.2rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 -8px 30px rgba(13,17,23,.25);
    transform: translateY(100%);
    transition: transform .4s ease;
  }
  .cookie-banner.visible { transform: translateY(0); }
  .cookie-banner p {
    font-size: .85rem;
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
  }
  .cookie-banner a {
    color: var(--accent-glow);
    text-decoration: underline;
  }
  .cookie-actions {
    display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap;
  }
  .cookie-accept {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: .65rem 1.4rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--body);
    transition: background .2s;
    min-height: 44px;
  }
  .cookie-accept:hover { background: var(--accent-light); }
  .cookie-decline {
    background: transparent;
    color: rgba(248,246,241,.5);
    border: 1px solid rgba(255,255,255,.15);
    padding: .65rem 1.2rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--body);
    transition: color .2s, border-color .2s;
    min-height: 44px;
  }
  .cookie-decline:hover { color: var(--paper); border-color: rgba(255,255,255,.35); }
  @media (max-width: 600px) {
    .cookie-banner { padding: 1.2rem 1.2rem 1.5rem; }
    .cookie-actions { width: 100%; }
    .cookie-accept, .cookie-decline { flex: 1; text-align: center; justify-content: center; }
  }

  /* ─── ÖSSZEHASONLÍTÓ TÁBLÁZAT ─── */
  .compare-table-wrap {
    margin-bottom: 2.5rem;
  }
  .compare-table-header {
    margin-bottom: 1.5rem;
  }
  .compare-table-title {
    font-family: var(--serif);
    font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em;
    color: var(--ink); margin-bottom: .3rem;
  }
  .compare-table-sub {
    font-size: .88rem; color: var(--muted); font-weight: 300;
  }
  .compare-table {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
  }
  .ct-head {
    background: var(--ink);
    color: var(--paper);
    padding: 1.1rem 1.2rem;
    font-size: .82rem; font-weight: 700;
    display: flex; align-items: center; gap: .5rem;
    position: relative;
  }
  .ct-head.ct-label { background: var(--ink); }
  .ct-featured-head {
    background: var(--accent);
    flex-direction: column; align-items: flex-start; gap: .3rem;
  }
  .ct-popular-tag {
    font-size: .68rem; font-weight: 600; letter-spacing: .06em;
    background: rgba(255,255,255,.2); border-radius: 50px;
    padding: .15rem .6rem;
  }
  .ct-level-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  }
  .ct-row-label {
    background: var(--cream);
    padding: 1rem 1.2rem;
    font-size: .78rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; color: var(--muted);
    display: flex; align-items: center;
    border-top: 1px solid var(--border);
  }
  .ct-cell {
    padding: 1rem 1.2rem;
    font-size: .88rem; color: var(--ink);
    line-height: 1.5; font-weight: 300;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }
  .ct-featured-col {
    background: #f0faf5;
    border-left-color: rgba(26,92,56,.15);
  }
  .ct-cta-cell {
    display: flex; align-items: center; padding: 1.1rem 1.2rem;
  }
  .ct-cta-btn {
    display: inline-flex; align-items: center;
    background: var(--ink); color: var(--paper);
    padding: .55rem 1.2rem; border-radius: 50px; border: none;
    font-size: .82rem; font-weight: 600; cursor: pointer; font-family: var(--body);
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .ct-cta-btn:hover { background: var(--accent); transform: translateY(-1px); }
  .ct-cta-featured {
    background: var(--accent);
  }
  .ct-cta-featured:hover { background: var(--accent-light); }
  @media (max-width: 780px) {
    .compare-table {
      grid-template-columns: 1fr;
      border-radius: 16px;
    }
    .ct-head.ct-label { display: none; }
    .ct-head { border-top: 1px solid rgba(255,255,255,.1); }
    .ct-head:first-of-type { border-top: none; }
    .ct-row-label { display: none; }
    .ct-cell {
      border-left: none;
      border-top: 1px solid var(--border);
      padding: .8rem 1.2rem;
    }
    .ct-cell:nth-child(4n+2)::before { content: '🟢 Kezdő · '; font-weight: 700; color: var(--accent); }
    .ct-cell:nth-child(4n+3)::before { content: '🟡 Középhaladó · '; font-weight: 700; color: #92700a; }
    .ct-cell:nth-child(4n+4)::before { content: '🔴 Haladó · '; font-weight: 700; color: #b91c1c; }
  }

  /* ─── SZINTFELMÉRŐ HERO GOMB ─── */
  .quiz-hero-cta {
    display: inline-flex; align-items: center; gap: 1rem;
    margin-top: 1.4rem;
    background: rgba(26,92,56,.08);
    border: 1.5px solid rgba(26,92,56,.25);
    border-radius: 14px;
    padding: .9rem 1.4rem;
    cursor: pointer;
    font-family: var(--body);
    text-align: left;
    transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
    width: 100%; max-width: 380px;
  }
  .quiz-hero-cta:hover {
    background: rgba(26,92,56,.14);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26,92,56,.15);
  }
  .quiz-hero-cta-icon { font-size: 1.6rem; flex-shrink: 0; }
  .quiz-hero-cta-text { display: flex; flex-direction: column; gap: .1rem; }
  .quiz-hero-cta-label {
    font-size: .95rem; font-weight: 700; color: var(--ink); line-height: 1.2;
  }
  .quiz-hero-cta-sub {
    font-size: .82rem; font-weight: 500; color: var(--accent);
  }

  /* ─── SZINTFELMÉRŐ BANNER (tanfolyamok szekció) ─── */
  .quiz-section-banner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, var(--ink) 0%, #1a3a28 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
  }
  .quiz-section-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(58,170,109,.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .quiz-banner-left { position: relative; z-index: 1; }
  .quiz-banner-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--accent-glow); margin-bottom: .6rem;
  }
  .quiz-banner-tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-glow); animation: pulse 2s infinite;
  }
  .quiz-banner-title {
    font-family: var(--serif);
    font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em;
    color: var(--paper); line-height: 1.25; margin-bottom: .45rem;
  }
  .quiz-banner-sub {
    font-size: .88rem; color: rgba(248,246,241,.55);
    font-weight: 300; line-height: 1.55; max-width: 420px;
  }
  .quiz-banner-btn {
    flex-shrink: 0; position: relative; z-index: 1;
    display: inline-flex; align-items: center; gap: .55rem;
    background: var(--accent-glow); color: #fff;
    padding: .95rem 2rem; border-radius: 50px; border: none;
    font-size: .95rem; font-weight: 700; cursor: pointer; font-family: var(--body);
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(58,170,109,.35);
    white-space: nowrap;
  }
  .quiz-banner-btn:hover {
    background: #2e9460; transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(58,170,109,.45);
  }
  @media (max-width: 700px) {
    .quiz-section-banner { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
    .quiz-banner-btn { width: 100%; justify-content: center; }
    .quiz-hero-cta { max-width: 100%; }
  }

  /* ─── SZINTFELMÉRŐ QUIZ MODAL ─── */
  #quizModal .modal { max-width: 640px; padding: 0; overflow: hidden; }
  .quiz-header {
    background: var(--ink);
    padding: 2rem 2.5rem 1.8rem;
    color: var(--paper);
  }
  .quiz-header .modal-tag { color: var(--accent-glow); }
  .quiz-header .modal-title { color: var(--paper); }
  .quiz-progress-wrap {
    margin-top: 1.2rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .quiz-progress-bar {
    flex: 1; height: 4px; background: rgba(255,255,255,.15); border-radius: 99px; overflow: hidden;
  }
  .quiz-progress-fill {
    height: 100%; background: var(--accent-glow); border-radius: 99px;
    transition: width .4s ease;
    width: 0%;
  }
  .quiz-progress-label {
    font-size: .78rem; color: rgba(248,246,241,.5); white-space: nowrap; font-weight: 400;
  }
  .quiz-body { padding: 2rem 2.5rem 2.5rem; }
  .quiz-question-block { display: none; }
  .quiz-question-block.active { display: block; animation: quizFadeIn .3s ease; }
  @keyframes quizFadeIn { from { opacity:0; transform: translateX(18px); } to { opacity:1; transform: none; } }
  .quiz-q-label {
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--accent); margin-bottom: .7rem;
  }
  .quiz-q-text {
    font-family: var(--serif); font-size: 1.12rem; font-weight: 700;
    color: var(--ink); line-height: 1.4; margin-bottom: 1.4rem;
  }
  .quiz-options { display: flex; flex-direction: column; gap: .65rem; }
  .quiz-option {
    display: flex; align-items: flex-start; gap: .85rem;
    padding: .85rem 1.1rem;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background: #fff;
  }
  .quiz-option:hover { border-color: var(--accent); background: #f0faf5; }
  .quiz-option.selected { border-color: var(--accent); background: #e8f5ef; }
  .quiz-option input[type=radio] { margin-top: .15rem; accent-color: var(--accent); flex-shrink: 0; }
  .quiz-option-text { font-size: .9rem; color: var(--ink); line-height: 1.45; }
  .quiz-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  }
  .quiz-btn-prev {
    background: transparent; border: 1.5px solid var(--border);
    color: var(--muted); padding: .7rem 1.5rem; border-radius: 50px;
    font-size: .88rem; font-weight: 500; cursor: pointer; font-family: var(--body);
    transition: border-color .2s, color .2s;
  }
  .quiz-btn-prev:hover { border-color: var(--ink); color: var(--ink); }
  .quiz-btn-prev:disabled { opacity: .3; cursor: default; }
  .quiz-btn-next {
    background: var(--accent); color: #fff;
    padding: .7rem 1.8rem; border-radius: 50px; border: none;
    font-size: .88rem; font-weight: 600; cursor: pointer; font-family: var(--body);
    transition: background .2s, transform .15s;
  }
  .quiz-btn-next:hover { background: var(--accent-light); transform: translateY(-1px); }
  .quiz-btn-next:disabled { opacity: .4; cursor: default; transform: none; }
  /* Result screen */
  .quiz-result { display: none; text-align: center; padding: .5rem 0; }
  .quiz-result.active { display: block; animation: quizFadeIn .4s ease; }
  .quiz-result-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1.2rem; border-radius: 50px;
    font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: 1.2rem;
  }
  .badge-kezdo { background: #e8f5ef; color: var(--accent); }
  .badge-kozephalado { background: #fff3cd; color: #7a5c00; }
  .badge-halado { background: #fde8e8; color: #b91c1c; }
  .quiz-result h3 {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 800;
    color: var(--ink); margin-bottom: .7rem; letter-spacing: -.02em;
  }
  .quiz-result p {
    font-size: .95rem; color: var(--muted); line-height: 1.7;
    max-width: 440px; margin: 0 auto 1.8rem; font-weight: 300;
  }
  .quiz-result-actions { display: flex; flex-direction: column; gap: .85rem; align-items: center; }
  .quiz-btn-scroll {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--accent); color: #fff;
    padding: .9rem 2.2rem; border-radius: 50px; border: none;
    font-size: .95rem; font-weight: 600; cursor: pointer; font-family: var(--body);
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 20px rgba(26,92,56,.3);
  }
  .quiz-btn-scroll:hover { background: var(--accent-light); transform: translateY(-2px); }
  .quiz-btn-restart {
    background: transparent; border: none;
    color: var(--muted); font-size: .85rem; cursor: pointer; font-family: var(--body);
    text-decoration: underline; text-underline-offset: 3px;
  }
  .quiz-score-bar-wrap { margin: 1.2rem auto; max-width: 320px; }
  .quiz-score-bar-label {
    display: flex; justify-content: space-between;
    font-size: .75rem; color: var(--muted); margin-bottom: .4rem;
  }
  .quiz-score-bar { height: 8px; background: var(--cream); border-radius: 99px; overflow: hidden; }
  .quiz-score-fill { height: 100%; border-radius: 99px; background: var(--accent-glow); transition: width 1s ease .3s; }

  /* --- BUSINESS UPGRADE: outcomes + process --- */
  .business-section {
    background: #fff;
    padding: clamp(4.5rem, 8vw, 7rem) 4rem;
  }
  .outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2.2rem 0 0;
  }
  .outcome-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.6rem;
    background: #fff;
    box-shadow: 0 10px 34px rgba(13,17,23,.05);
  }
  .outcome-kicker {
    display: inline-flex;
    margin-bottom: .9rem;
    color: var(--accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .outcome-card h3 {
    font-family: var(--serif);
    font-size: 1.24rem;
    line-height: 1.25;
    margin-bottom: .7rem;
    color: var(--ink);
  }
  .outcome-card p,
  .process-step p,
  .trust-panel p {
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.6;
    font-weight: 400;
  }
  .process-section {
    background: var(--paper);
    padding: clamp(4.5rem, 8vw, 7rem) 4rem;
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
    margin-top: 2.6rem;
  }
  .process-step {
    position: relative;
    min-height: 230px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.35rem;
  }
  .process-step span {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
  }
  .process-step h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: .65rem;
  }
  .trust-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(26,92,56,.18);
    border-radius: 8px;
    background: #f0faf5;
  }
  .trust-panel strong {
    display: block;
    margin-bottom: .25rem;
    color: var(--ink);
    font-size: 1rem;
  }
  .trust-panel .btn-primary {
    flex: 0 0 auto;
    box-shadow: none;
  }
  @media (max-width: 960px) {
    .business-section,
    .process-section { padding-left: 2rem; padding-right: 2rem; }
    .outcome-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-panel { align-items: flex-start; flex-direction: column; }
  }
  @media (max-width: 620px) {
    .business-section,
    .process-section { padding-left: 1.2rem; padding-right: 1.2rem; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step { min-height: auto; }
    .trust-panel .btn-primary { width: 100%; justify-content: center; }
  }

  /* --- CUSTOMER-FIRST HOMEPAGE REFORM --- */
  .nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    flex: 0 0 auto;
  }
  .nav-logo span {
    display: inline;
    width: auto;
    height: auto;
    line-height: inherit;
    background: transparent;
    color: var(--ink);
    border-radius: 0;
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 800;
  }
  .hero-reformed {
    min-height: 88vh;
    padding-top: 7rem;
    padding-bottom: 3.6rem;
  }
  .hero-reformed .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero-reformed h1 {
    max-width: 660px;
    font-size: clamp(2.35rem, 4.35vw, 4.35rem);
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 1.15rem;
  }
  .hero-reformed p {
    max-width: 560px;
    font-size: 1rem;
    color: #4b5563;
    font-weight: 400;
    margin-bottom: 1.35rem;
  }
  .hero-choice-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 0 0 1.15rem;
  }
  .hero-choice-tabs a,
  .hero-choice-tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: .5rem .9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.75);
    color: var(--ink);
    text-decoration: none;
    font-family: var(--body);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s, border-color .18s, transform .18s;
  }
  .hero-choice-tabs a:hover,
  .hero-choice-tabs button:hover {
    background: #fff;
    border-color: rgba(26,92,56,.28);
    transform: translateY(-1px);
  }
  .hero-choice-tabs a:nth-child(2) {
    color: #b91c1c;
    border-color: rgba(220,38,38,.22);
  }
  .hero-primary-cta {
    background: #0f6b3f;
    box-shadow: 0 12px 32px rgba(15,107,63,.28), 0 0 0 6px rgba(26,92,56,.08);
    animation: heroCtaPulse 3.4s ease-in-out infinite;
  }
  @keyframes heroCtaPulse {
    0%, 100% { box-shadow: 0 12px 32px rgba(15,107,63,.28), 0 0 0 6px rgba(26,92,56,.08); }
    50% { box-shadow: 0 16px 40px rgba(15,107,63,.34), 0 0 0 10px rgba(26,92,56,.05); }
  }
  .hero-decision-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: stretch;
    background:
      linear-gradient(145deg, rgba(255,255,255,.96), rgba(237,233,224,.92));
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.05rem;
    box-shadow: 0 24px 70px rgba(13,17,23,.12);
  }
  .hero-panel-head {
    padding: 1rem 1.05rem .55rem;
  }
  .hero-panel-head span,
  .audience-kicker {
    display: block;
    color: var(--accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .35rem;
  }
  .hero-panel-head strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.15;
  }
  .hero-path-card {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.15rem;
    transition: transform .18s, border-color .18s, box-shadow .18s;
  }
  .hero-path-card:hover {
    transform: translateY(-2px);
    border-color: rgba(26,92,56,.28);
    box-shadow: 0 12px 30px rgba(13,17,23,.08);
  }
  .hero-path-card strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.08rem;
    line-height: 1.25;
    margin-bottom: .35rem;
  }
  .hero-path-card em {
    display: block;
    color: var(--muted);
    font-size: .88rem;
    font-style: normal;
    line-height: 1.55;
  }
  .hero-path-card-dark {
    background: var(--ink);
    color: var(--paper);
  }
  .hero-path-card-dark em { color: rgba(248,246,241,.68); }
  .hero-path-card-quiz {
    width: 100%;
    text-align: left;
    font: inherit;
    cursor: pointer;
  }
  .hero-next-card {
    background: #fff;
    border: 1px solid rgba(26,92,56,.16);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(13,17,23,.08);
    display: grid;
    gap: .9rem;
    padding: 1.25rem;
  }
  .hero-next-label {
    align-items: center;
    background: rgba(26,92,56,.08);
    border: 1px solid rgba(26,92,56,.14);
    border-radius: 999px;
    color: var(--accent);
    display: inline-flex;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    padding: .42rem .7rem;
    text-transform: uppercase;
    width: fit-content;
  }
  .hero-next-card h2 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.2vw, 2.1rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0;
  }
  .hero-next-card p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.6;
    margin: 0;
  }
  .hero-next-meta {
    display: grid;
    gap: .45rem;
  }
  .hero-next-meta span {
    background: var(--cream);
    border-radius: 12px;
    color: #374151;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
    padding: .62rem .75rem;
  }
  .hero-next-bottom {
    align-items: end;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-top: .9rem;
  }
  .hero-next-bottom strong {
    color: var(--accent);
    font-family: var(--serif);
    font-size: 1.75rem;
    line-height: 1;
  }
  .hero-next-bottom em {
    color: var(--muted);
    font-size: .82rem;
    font-style: normal;
    font-weight: 800;
    text-align: right;
  }
  .hero-next-cta {
    align-items: center;
    background: var(--ink);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: .9rem;
    font-weight: 900;
    justify-content: center;
    min-height: 46px;
    padding: .75rem 1.1rem;
    text-decoration: none;
    transition: background .18s, transform .18s;
    width: 100%;
  }
  .hero-next-cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
  }
  .hero-current-list {
    display: grid;
    gap: .55rem;
  }
  .hero-current-list div {
    background: rgba(255,255,255,.7);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .85rem .95rem;
  }
  .hero-current-list strong {
    color: var(--ink);
    display: block;
    font-size: .88rem;
    margin-bottom: .15rem;
  }
  .hero-current-list span {
    color: var(--muted);
    display: block;
    font-size: .8rem;
    line-height: 1.45;
  }
  .hero-current-grid {
    display: grid;
    gap: .75rem;
  }
  .hero-current-card {
    background: rgba(255,255,255,.82);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--ink);
    display: grid;
    gap: .28rem;
    padding: 1rem;
    text-decoration: none;
    transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
  }
  .hero-current-card:hover {
    background: #fff;
    border-color: rgba(26,92,56,.25);
    box-shadow: 0 12px 28px rgba(13,17,23,.07);
    transform: translateY(-1px);
  }
  .hero-current-card-primary {
    border-color: rgba(26,92,56,.22);
    box-shadow: inset 0 0 0 1px rgba(26,92,56,.06);
  }
  .hero-current-card-student {
    background: #f5f9ff;
    border-color: rgba(37,99,235,.16);
  }
  .hero-current-card-student span {
    color: #1d4ed8;
  }
  .hero-current-card span {
    color: var(--accent);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .09em;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .hero-current-card strong {
    color: var(--ink);
    display: block;
    font-family: var(--serif);
    font-size: 1.12rem;
    line-height: 1.18;
  }
  .hero-current-card em {
    color: var(--muted);
    display: block;
    font-size: .82rem;
    font-style: normal;
    line-height: 1.45;
  }
  .hero-current-card-student span {
    color: #1d4ed8;
  }
  .hero-current-summary {
    background: rgba(26,92,56,.08);
    border: 1px solid rgba(26,92,56,.14);
    border-radius: 14px;
    padding: .9rem 1rem;
  }
  .hero-current-summary strong {
    color: var(--accent);
    display: block;
    font-size: .9rem;
    line-height: 1.35;
    margin-bottom: .18rem;
  }
  .hero-current-summary span {
    color: #4b5563;
    display: block;
    font-size: .8rem;
    line-height: 1.45;
  }
  .hero-panel-links {
    display: grid;
    gap: .55rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-panel-links a {
    align-items: center;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--ink);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 800;
    justify-content: center;
    line-height: 1.25;
    min-height: 44px;
    padding: .55rem .45rem;
    text-align: center;
    text-decoration: none;
    transition: background .18s, border-color .18s;
  }
  .hero-panel-links a:hover {
    background: #fff;
    border-color: rgba(26,92,56,.24);
  }
  .audience-section {
    background: #fff;
    padding-top: clamp(3.2rem, 6vw, 4.8rem);
    padding-bottom: clamp(3.2rem, 6vw, 4.8rem);
  }
  .audience-head {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
  }
  .audience-head .section-sub {
    margin: 0;
    max-width: 540px;
  }
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .audience-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: clamp(1.15rem, 2vw, 1.55rem);
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .audience-card-business {
    background: #f2f8f4;
    border-color: rgba(26,92,56,.18);
    color: var(--ink);
  }
  .audience-card-rapid {
    background: #fbf2ef;
    border-color: rgba(139,86,78,.18);
  }
  .audience-card-student {
    background: #f5f9ff;
    border-color: rgba(37,99,235,.16);
  }
  .audience-card h3 {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: .55rem;
  }
  .audience-fit {
    display: inline-block;
    max-width: 100%;
    margin: 0 0 .75rem;
    border: 1px solid rgba(26,92,56,.14);
    border-radius: 8px;
    padding: .45rem .62rem;
    background: rgba(255,255,255,.66);
    color: var(--ink);
    font-size: .82rem;
    font-weight: 850;
    line-height: 1.35;
  }
  .audience-card-rapid .audience-fit {
    border-color: rgba(139,86,78,.2);
    background: rgba(255,248,244,.72);
  }
  .audience-card-student .audience-fit {
    border-color: rgba(37,99,235,.16);
    background: rgba(246,250,255,.72);
  }
  .audience-card p {
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 1.1rem;
  }
  .audience-card-business p { color: var(--muted); }
  .audience-card ul {
    list-style: none;
    display: grid;
    gap: .7rem;
    margin: .3rem 0 1.4rem;
  }
  .audience-card li {
    position: relative;
    padding-left: 1.55rem;
    color: #374151;
    font-size: .94rem;
  }
  .audience-card-business li { color: #374151; }
  .audience-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-glow);
  }
  .audience-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: auto;
  }
  .audience-actions .btn-primary,
  .audience-actions .btn-secondary {
    padding: .78rem 1.25rem;
    font-size: .9rem;
  }
  .audience-actions button {
    cursor: pointer;
    font-family: inherit;
  }
  .audience-card-business .btn-secondary {
    color: var(--ink);
    border-color: var(--border);
  }
  .audience-card-business .btn-secondary:hover {
    background: rgba(26,92,56,.07);
    border-color: rgba(26,92,56,.35);
  }
  .audience-card-student .btn-secondary {
    color: var(--ink);
    border-color: rgba(37,99,235,.18);
  }
  .audience-card-student .btn-secondary:hover {
    background: rgba(37,99,235,.07);
    border-color: rgba(37,99,235,.3);
  }
  .course-finder {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    gap: 1rem;
    align-items: stretch;
  }
  .course-finder-panel,
  .course-finder-result {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--paper);
    padding: clamp(1.15rem, 2.2vw, 1.7rem);
  }
  .course-finder-panel {
    background:
      linear-gradient(135deg, rgba(26,92,56,.05), rgba(255,255,255,0) 42%),
      var(--paper);
  }
  .course-finder-progress {
    display: flex;
    gap: .45rem;
    margin-bottom: 1rem;
  }
  .course-finder-progress span {
    width: 36px;
    height: 6px;
    border-radius: 999px;
    background: rgba(26,92,56,.16);
    transition: background .2s ease, width .2s ease;
  }
  .course-finder-progress span.active {
    width: 54px;
    background: var(--accent);
  }
  .course-finder-step {
    display: none;
  }
  .course-finder-step.active {
    display: block;
  }
  .course-finder-step h3,
  .course-finder-result h3 {
    font-family: var(--serif);
    color: var(--ink);
    font-size: clamp(1.45rem, 2.4vw, 2.05rem);
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 1rem;
  }
  .course-finder-options {
    display: grid;
    gap: .65rem;
  }
  .course-finder-options button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font-family: inherit;
    font-weight: 850;
    font-size: .98rem;
    line-height: 1.25;
    padding: .9rem 1rem;
    text-align: left;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
  }
  .course-finder-options button::after {
    content: "→";
    color: var(--accent);
    font-weight: 900;
  }
  .course-finder-options button:hover,
  .course-finder-options button.is-selected {
    background: #f8fbf9;
    border-color: rgba(26,92,56,.32);
    transform: translateY(-1px);
  }
  .course-finder-result {
    display: flex;
    flex-direction: column;
    background: #f3f8f5;
    border-color: rgba(26,92,56,.18);
  }
  .course-finder-result p {
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 1rem;
  }
  .course-finder-reasons {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin: 0 0 1.1rem;
  }
  .course-finder-reasons span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(26,92,56,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    color: var(--accent);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1.2;
    padding: .42rem .65rem;
  }
  .audience-shortcuts {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
  }
  .audience-shortcuts a {
    display: block;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: .9rem 1rem;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
  }
  .audience-shortcuts a:hover {
    transform: translateY(-1px);
    border-color: rgba(26,92,56,.25);
    background: #fbfaf7;
  }
  .audience-shortcuts span {
    display: block;
    color: var(--accent);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .25rem;
  }
  .audience-shortcuts strong {
    display: block;
    font-size: .9rem;
    line-height: 1.3;
  }
  .credibility-strip {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
  }
  .credibility-strip div {
    padding: 1.1rem 1.2rem;
    border-right: 1px solid var(--border);
  }
  .credibility-strip div:last-child { border-right: none; }
  .credibility-strip strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.18rem;
    line-height: 1.15;
    color: var(--ink);
  }
  .credibility-strip span {
    display: block;
    margin-top: .25rem;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.4;
  }
  @media (max-width: 1000px) {
    .hero-reformed .hero-inner,
    .audience-head {
      grid-template-columns: 1fr;
    }
    .audience-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .course-finder {
      grid-template-columns: 1fr;
    }
    .audience-shortcuts {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-decision-panel {
      align-self: auto;
    }
    .credibility-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .credibility-strip div:nth-child(2) { border-right: none; }
    .credibility-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  }
  @media (max-width: 620px) {
    .audience-grid {
      grid-template-columns: 1fr;
    }
    .audience-shortcuts {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 620px) {
    .nav-logo span { font-size: 1rem; }
    .hero-reformed h1 { font-size: 2.35rem; }
    .hero-decision-panel { border-radius: 18px; padding: .8rem; }
    .hero-panel-links { grid-template-columns: 1fr; }
    .hero-next-bottom {
      align-items: flex-start;
      flex-direction: column;
      gap: .4rem;
    }
    .hero-next-bottom em { text-align: left; }
    .audience-actions { flex-direction: column; }
    .audience-actions .btn-primary,
    .audience-actions .btn-secondary {
      width: 100%;
      justify-content: center;
    }
    .credibility-strip { grid-template-columns: 1fr; }
    .credibility-strip div {
      border-right: none;
      border-bottom: 1px solid var(--border);
    }
    .credibility-strip div:last-child { border-bottom: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-primary-cta {
      animation: none;
    }
  }

  /* --- COMPACT SCHEDULE CARDS --- */
  .schedule-head {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(280px, .72fr);
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.6rem;
  }
  .schedule-head .section-sub {
    margin: 0;
    max-width: 520px;
  }
  .schedule-flow-note {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
    margin: 0 0 1.1rem;
  }
  .schedule-flow-note span {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.35;
    padding: .6rem .8rem;
    text-align: center;
  }
  .rapid-fit-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin: -.35rem 0 1.15rem;
  }
  .rapid-fit-strip div {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(139,86,78,.14);
    border-radius: 8px;
    padding: .9rem;
  }
  .rapid-fit-strip strong {
    color: #8b564e;
    display: block;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1.25;
    margin-bottom: .28rem;
    text-transform: uppercase;
  }
  .rapid-fit-strip span {
    color: #526071;
    display: block;
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.48;
  }
  .schedule-empty {
    grid-column: 1 / -1;
    display: grid;
    gap: .35rem;
    text-align: center;
    padding: 2.2rem;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
  }
  .schedule-empty strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.25rem;
  }
  .schedule-empty a {
    color: var(--accent);
    font-weight: 700;
  }
  .schedule-card {
    padding: 1.65rem;
    gap: 1rem;
  }
  .schedule-card .uc-meta {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .9rem;
  }
  .schedule-card .uc-row {
    gap: 0;
  }
  .schedule-card .uc-row + .uc-row {
    padding-top: .38rem;
    margin-top: .38rem;
    border-top: 1px solid rgba(13,17,23,.06);
  }
  .rapid-course-card {
    gap: .85rem;
  }
  .rapid-course-card .uc-meta {
    gap: .22rem;
    padding: .72rem .78rem;
  }
  .rapid-course-card .uc-row {
    color: #344054;
    font-size: .9rem;
    font-weight: 650;
    line-height: 1.25;
  }
  .rapid-course-card .uc-row + .uc-row {
    margin-top: .22rem;
    padding-top: .22rem;
  }
  .rapid-course-card .deadline-note {
    padding: .42rem .58rem;
  }
  .rapid-course-card .uc-price-row {
    color: var(--ink);
    font-weight: 800;
  }
  .rapid-course-card .uc-price-row strong {
    color: var(--accent);
    font-size: 1.04rem;
    font-weight: 900;
  }
  @media (max-width: 900px) {
    .schedule-head {
      grid-template-columns: 1fr;
    }
    .schedule-flow-note {
      grid-template-columns: 1fr;
    }
    .rapid-fit-strip {
      grid-template-columns: 1fr;
    }
  }

  /* --- COMPACT REVIEWS --- */
  .reviews-head {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.25rem;
  }
  .reviews-head .section-sub {
    margin: 0;
    max-width: 520px;
  }
  .reviews-rating {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .55rem .9rem;
    margin-bottom: 1rem;
  }
  .reviews-rating strong {
    font-family: var(--serif);
    font-size: 1.2rem;
  }
  .reviews-rating span {
    color: #f59e0b;
    letter-spacing: .03em;
  }
  .reviews-rating em {
    color: var(--muted);
    font-size: .82rem;
    font-style: normal;
  }
  .reviews-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 0 0 1rem;
  }
  .reviews-proof-strip span {
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(26,92,56,.12);
    border-radius: 8px;
    color: #465566;
    font-size: .78rem;
    font-weight: 750;
    line-height: 1.35;
    padding: .46rem .62rem;
  }
  .reviews-flow {
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
    padding: .25rem 0 1rem;
    position: relative;
  }
  .reviews-flow::before,
  .reviews-flow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(9vw, 110px);
    z-index: 2;
    pointer-events: none;
  }
  .reviews-flow::before {
    left: 0;
    background: linear-gradient(90deg, var(--paper), rgba(248,246,241,0));
  }
  .reviews-flow::after {
    right: 0;
    background: linear-gradient(270deg, var(--paper), rgba(248,246,241,0));
  }
  .reviews-flow-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: reviewsFlow 42s linear infinite;
    padding: .25rem 1rem;
  }
  .reviews-flow:hover .reviews-flow-track {
    animation-play-state: paused;
  }
  @keyframes reviewsFlow {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - .5rem)); }
  }
  .compact-review-card {
    flex: 0 0 360px;
    min-height: 220px;
    justify-content: space-between;
  }
  .review-card-footer {
    align-items: center;
    display: flex;
    gap: .65rem;
    margin-top: auto;
    padding-top: .8rem;
    border-top: 1px solid var(--border);
  }
  .review-card-footer strong {
    font-size: .9rem;
  }
  .review-card-footer span {
    color: var(--muted);
    font-size: .78rem;
  }
  .review-author-photo {
    align-items: center;
    background: #f0faf5;
    border: 1px solid rgba(26,92,56,.14);
    border-radius: 50%;
    color: var(--accent);
    display: flex;
    flex: 0 0 38px;
    font-size: .9rem;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    overflow: hidden;
    width: 38px;
  }
  .review-author-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .reviews-social-cta {
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin: 1.2rem auto 0;
    max-width: 720px;
    padding: .75rem .9rem .75rem 1.2rem;
  }
  .reviews-social-cta > span {
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.45;
  }
  .reviews-social-cta a {
    align-items: center;
    background: #1877f2;
    border: 1px solid #1877f2;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex-shrink: 0;
    font-size: .82rem;
    gap: .4rem;
    font-weight: 800;
    padding: .7rem 1rem;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
  }
  .reviews-social-cta a svg {
    display: block;
    fill: currentColor;
    height: 18px;
    width: 18px;
  }
  .reviews-social-cta a span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
  }
  .reviews-social-cta a:hover {
    background: #0f65d6;
    border-color: #0f65d6;
    transform: translateY(-1px);
  }
  @media (max-width: 900px) {
    .reviews-head {
      grid-template-columns: 1fr;
    }
    .compact-review-card {
      flex-basis: 300px;
    }
    .reviews-social-cta {
      align-items: stretch;
      border-radius: 16px;
      flex-direction: column;
    }
    .reviews-social-cta a {
      text-align: center;
    }
  }

  /* --- CUSTOMER-FIRST COURSE SECTION --- */
  .courses-reformed {
    background:
      linear-gradient(180deg, var(--paper) 0%, #fff 46%, var(--paper) 100%);
  }
  .courses-head {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.4rem;
  }
  .courses-head .section-title {
    max-width: 760px;
  }
  .courses-head .section-sub {
    margin: 0;
    max-width: 520px;
  }
  .course-finder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--ink);
    color: var(--paper);
    border-radius: 22px;
    padding: 1.45rem 1.6rem;
    margin: 0 0 1.25rem;
    box-shadow: 0 20px 55px rgba(13,17,23,.16);
  }
  .course-finder-copy span {
    display: block;
    color: var(--accent-glow);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .28rem;
  }
  .course-finder-copy strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: .35rem;
  }
  .course-finder-copy p {
    color: rgba(248,246,241,.7);
    font-size: .9rem;
    line-height: 1.6;
    max-width: 720px;
  }
  .course-finder .quiz-banner-btn {
    position: static;
    flex: 0 0 auto;
    border: 0;
    color: var(--ink);
    background: var(--paper);
    box-shadow: none;
  }
  .audience-section .course-finder {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    align-items: stretch;
    gap: 1rem;
    background: transparent;
    color: inherit;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
  .course-map {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.35rem;
  }
  .course-map article {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.25rem;
  }
  .course-map-featured {
    border-color: rgba(26,92,56,.32) !important;
    box-shadow: inset 0 0 0 1px rgba(26,92,56,.1), 0 12px 35px rgba(26,92,56,.08);
  }
  .course-map span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--accent);
    font-weight: 900;
    font-size: .8rem;
    margin-bottom: .85rem;
  }
  .course-map strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: .4rem;
  }
  .course-map p {
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.6;
  }
  .courses-reformed .courses-grid {
    align-items: stretch;
    margin-top: 1.5rem;
  }
  .courses-reformed .course-card {
    position: relative;
    padding: 1.45rem;
    border-radius: 18px;
    min-height: 100%;
    overflow: hidden;
  }
  .courses-reformed .course-card.featured {
    padding-top: 1.45rem;
  }
  .course-card-media {
    margin: -1.45rem -1.45rem 1rem;
    aspect-ratio: 16 / 10;
    background: linear-gradient(180deg, #f8f6f1 0%, #ebe6db 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .course-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .course-card.featured .course-card-media {
    border-bottom-color: rgba(255,255,255,.12);
  }
  .course-card-top {
    min-height: 178px;
  }
  .courses-reformed .course-tag-accent {
    position: static;
    transform: none;
    display: inline-flex;
    width: fit-content;
    margin-bottom: .75rem;
    box-shadow: 0 10px 22px rgba(13,17,23,.16);
  }
  .course-level-hint {
    display: block;
    color: var(--accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: .45rem;
  }
  .course-card.featured .course-level-hint {
    color: var(--accent-glow);
  }
  .courses-reformed .course-title {
    font-size: 1.42rem;
    line-height: 1.13;
    letter-spacing: 0;
  }
  .courses-reformed .course-desc {
    margin-bottom: 1.25rem;
    font-weight: 400;
  }
  .courses-reformed .course-features {
    gap: .48rem;
    margin-bottom: 1.35rem;
  }
  .courses-reformed .course-feature {
    align-items: flex-start;
    line-height: 1.45;
  }
  .courses-reformed .course-feature::before {
    margin-top: .55em;
  }
  .courses-reformed .course-footer {
    gap: 1rem;
  }
  .course-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .55rem;
  }
  .course-actions .btn-dl {
    margin-top: 0;
  }
  .corporate-reformed {
    background:
      linear-gradient(135deg, #fff 0%, #f8f6f1 100%);
    border-radius: 24px;
    padding: clamp(1.7rem, 4vw, 3rem);
    box-shadow: 0 20px 65px rgba(13,17,23,.08);
  }
  .corporate-reformed h3 {
    font-size: clamp(1.7rem, 3vw, 2.55rem);
  }
  @media (max-width: 960px) {
    .courses-head,
    .course-map {
      grid-template-columns: 1fr;
    }
    .audience-section .course-finder {
      grid-template-columns: 1fr;
    }
    .course-finder {
      flex-direction: column;
      align-items: flex-start;
    }
    .course-finder .quiz-banner-btn {
      width: 100%;
      justify-content: center;
    }
    .course-card-top {
      min-height: auto;
    }
  }
  @media (max-width: 620px) {
    .courses-reformed .course-footer {
      align-items: flex-start;
      flex-direction: column;
    }
    .course-actions {
      width: 100%;
      align-items: stretch;
    }
    .course-actions .btn-course,
    .course-actions .btn-dl {
      justify-content: center;
      width: 100%;
    }
  }

  /* --- KIDS / STUDENTS --- */
  .kids-excel-section {
    background:
      radial-gradient(circle at 18% 18%, rgba(58,170,109,.12), transparent 30%),
      radial-gradient(circle at 82% 28%, rgba(37,99,235,.10), transparent 28%),
      linear-gradient(180deg, #fff 0%, var(--paper) 100%);
    padding: clamp(4rem, 7vw, 6.5rem) 0;
  }
  .kids-excel-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .58fr);
    gap: clamp(1.4rem, 4vw, 3rem);
    align-items: stretch;
    margin-bottom: 1.35rem;
  }
  .kids-excel-copy {
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(26,92,56,.12);
    border-radius: 26px;
    padding: clamp(1.6rem, 4vw, 3rem);
    box-shadow: 0 18px 55px rgba(13,17,23,.06);
  }
  .kids-excel-copy .section-title {
    max-width: 820px;
  }
  .kids-excel-copy .section-sub {
    max-width: 760px;
    margin-bottom: 1.3rem;
  }
  .kids-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 1.25rem 0 1.55rem;
  }
  .kids-pill-row span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(26,92,56,.16);
    border-radius: 999px;
    background: #f5fbf7;
    color: var(--accent);
    padding: .48rem .75rem;
    font-size: .78rem;
    font-weight: 850;
    line-height: 1.2;
  }
  .kids-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
  }
  .kids-excel-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(37,99,235,.16);
    background:
      linear-gradient(145deg, #f5f9ff 0%, #fff 60%, #f6fff9 100%);
    padding: clamp(1.35rem, 3vw, 2rem);
    box-shadow: 0 18px 55px rgba(13,17,23,.06);
  }
  .kids-excel-card::before {
    content: "";
    position: absolute;
    right: 1.1rem;
    top: 1rem;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background:
      linear-gradient(90deg, rgba(26,92,56,.18) 1px, transparent 1px),
      linear-gradient(0deg, rgba(26,92,56,.18) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: .55;
  }
  .kids-card-kicker {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #1d4ed8;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .kids-time-list {
    display: grid;
    gap: .75rem;
    margin-bottom: 1rem;
  }
  .kids-time-list div {
    display: grid;
    gap: .12rem;
    border: 1px solid rgba(13,17,23,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    padding: .85rem .95rem;
  }
  .kids-time-list strong {
    font-family: var(--serif);
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .kids-time-list span,
  .kids-excel-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
  }
  .student-course-list {
    margin-top: clamp(1.5rem, 4vw, 2.6rem);
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid rgba(26,92,56,.12);
    border-radius: 26px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 18px 55px rgba(13,17,23,.05);
  }
  .student-schedule-head {
    margin-bottom: 1.25rem;
  }
  .student-schedule-head .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
  }
  .student-upcoming-grid {
    margin-bottom: 0;
  }
  .student-course-card {
    border-color: rgba(37,99,235,.16);
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  }
  .student-age-row {
    color: #1d4ed8;
    font-size: .9rem;
    font-weight: 850;
    line-height: 1.35;
    margin: .45rem 0 .25rem;
  }
  .student-parent-note {
    background: rgba(37,99,235,.07);
    border: 1px solid rgba(37,99,235,.12);
    border-radius: 8px;
    color: #475569;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.42;
    margin: .2rem 0 .55rem;
    padding: .48rem .6rem;
  }
  .kids-program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .kids-program-grid article {
    min-height: 100%;
    border: 1px solid rgba(13,17,23,.08);
    border-radius: 20px;
    background: #fff;
    padding: 1.2rem;
    box-shadow: 0 12px 34px rgba(13,17,23,.045);
  }
  .kids-program-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 32px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--accent);
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: .85rem;
  }
  .kids-program-grid h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    line-height: 1.18;
    margin-bottom: .45rem;
  }
  .kids-program-grid p {
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.6;
  }
  .kids-program-note {
    background: #fffaf4 !important;
    border-color: rgba(217,119,6,.18) !important;
  }
  .kids-program-note > span {
    background: #fef3c7 !important;
    color: #92400e !important;
  }
  .kids-parent-guide {
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr) auto;
    gap: 1.2rem;
    align-items: center;
    margin-top: 1rem;
    border: 1px solid rgba(26,92,56,.14);
    border-radius: 22px;
    background: rgba(255,255,255,.86);
    padding: clamp(1.15rem, 2.4vw, 1.65rem);
    box-shadow: 0 14px 40px rgba(13,17,23,.05);
  }
  .kids-parent-guide .section-tag {
    margin-bottom: .35rem;
  }
  .kids-parent-guide h3 {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.15;
  }
  .kids-guide-list {
    display: grid;
    gap: .6rem;
  }
  .kids-guide-list p {
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.55;
  }
  .kids-guide-list strong {
    color: var(--ink);
  }
  .kids-guide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    min-width: 210px;
    padding: .9rem 1.1rem;
    text-align: center;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 900;
    line-height: 1.25;
    transition: background .18s, transform .18s;
  }
  .kids-guide-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
  }
  .kids-interest-panel {
    margin-top: 1rem;
    border: 1px solid rgba(37,99,235,.12);
    border-radius: 22px;
    background: #f8fbff;
    padding: clamp(1.15rem, 2.4vw, 1.65rem);
  }
  .kids-interest-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1rem;
  }
  .kids-interest-head .section-tag {
    margin-bottom: .35rem;
  }
  .kids-interest-head h3 {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.15;
    max-width: 620px;
  }
  .kids-interest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
  }
  .kids-interest-grid a {
    display: grid;
    gap: .25rem;
    min-height: 100%;
    border: 1px solid rgba(37,99,235,.12);
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    padding: 1rem;
    text-decoration: none;
    transition: border-color .18s, box-shadow .18s, transform .18s;
  }
  .kids-interest-grid a:hover {
    border-color: rgba(37,99,235,.28);
    box-shadow: 0 12px 30px rgba(37,99,235,.08);
    transform: translateY(-1px);
  }
  .kids-interest-grid span {
    color: #1d4ed8;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .kids-interest-grid strong {
    font-family: var(--serif);
    font-size: 1.15rem;
    line-height: 1.15;
  }
  .kids-interest-grid em {
    color: var(--muted);
    font-size: .82rem;
    font-style: normal;
    line-height: 1.45;
  }
  @media (max-width: 1050px) {
    .kids-excel-shell,
    .kids-program-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .kids-interest-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .kids-parent-guide {
      grid-template-columns: 1fr;
      align-items: start;
    }
    .kids-guide-cta {
      width: 100%;
    }
  }
  @media (max-width: 700px) {
    .kids-excel-shell,
    .kids-program-grid {
      grid-template-columns: 1fr;
    }
    .kids-actions .btn-primary,
    .kids-actions .btn-secondary {
      width: 100%;
      justify-content: center;
    }
    .kids-interest-head {
      display: block;
    }
    .kids-interest-grid {
      grid-template-columns: 1fr;
    }
  }

  /* --- TRUST, PROCESS, FAQ REFORM --- */
  .process-reformed {
    background: #fff;
  }
  .process-head,
  .faq-head {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.8rem;
  }
  .process-head .section-sub,
  .faq-head .section-sub {
    margin: 0;
    max-width: 560px;
  }
  .process-reformed .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .process-reformed .process-step {
    min-height: 220px;
  }
  .about-reformed .about-lead {
    color: rgba(248,246,241,.78);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 1.2rem;
  }
  .faq-reformed {
    background:
      linear-gradient(180deg, var(--paper) 0%, #fff 100%);
  }
  .faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 0 1.2rem;
  }
  .faq-quick-card {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(26,92,56,.13);
    border-radius: 8px;
    padding: 1rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    gap: .55rem;
  }
  .faq-quick-card span {
    color: var(--accent);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .faq-quick-card strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.2rem;
    line-height: 1.18;
    letter-spacing: 0;
  }
  .faq-quick-card a {
    margin-top: auto;
    color: var(--accent);
    font-weight: 850;
    text-decoration: none;
  }
  .faq-quick-card a:hover {
    color: var(--accent-glow);
  }
  .faq-reformed .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-reformed .faq-item {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(13,17,23,.04);
  }
  .faq-reformed .faq-q {
    font-weight: 700;
  }
  @media (max-width: 1100px) {
    .process-reformed .process-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  @media (max-width: 900px) {
    .process-head,
    .faq-head,
    .faq-quick-grid,
    .faq-reformed .faq-grid {
      grid-template-columns: 1fr;
    }
    .process-reformed .process-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 620px) {
    .process-reformed .process-grid {
      grid-template-columns: 1fr;
    }
    .process-reformed .process-step {
      min-height: auto;
    }
  }
