/* Akademia Ja Latam — Main Stylesheet */
/* Generated from homepage preview v3 */



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

  :root {
    --black: #0a0a0a;
    --white: #f5f4f0;
    --gray-100: #ebebeb;
    --gray-200: #d4d4d4;
    --gray-400: #888;
    --gray-600: #444;
    --accent: #0a0a0a;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
  }

  /* NOISE TEXTURE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ─── NAV ─────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(245, 244, 240, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
  }



  .nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
  }
  .nav-links > li {
    position: relative;
  }
  .nav-links > li > a {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 0 0 0px transparent;
    transition: color 0.15s, box-shadow 0.15s;
  }
  .nav-links > li > a:hover {
    background: transparent;
    color: var(--black);
    box-shadow: 0 0 0 1.5px var(--gray-200);
  }

  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    color: #444;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .nav-links > li > a.active,
  .nav-links > li.active > a {
    font-weight: 700;
    color: var(--black);
    box-shadow: 0 0 0 1.5px var(--black);
    border-radius: 100px;
  }

  .nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-family: 'Space Mono', monospace !important;
    font-size: 13px !important;
    border: 1.5px solid var(--black);
    transition: background 0.18s, color 0.18s !important;
  }

  .nav-cta:hover {
    background: transparent !important;
    color: var(--black) !important;
  }

  /* ikony nav */
  .nav-icons {
    display: flex; align-items: center; gap: 2px;
    margin-left: 10px; padding-left: 10px;
    border-left: 1.5px solid var(--gray-200);
  }
  .nav-icon-btn {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: none; cursor: pointer;
    color: #1a1a1a; transition: background 0.15s;
  }
  .nav-icon-btn:hover { background: var(--gray-100); }
  .nav-icon-btn svg {
    width: 18px; height: 18px;
    stroke: currentColor; fill: none;
    stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  }
  .nav-icon-btn-wrap { position: relative; }
  .nav-cart-badge {
    position: absolute; top: 3px; right: 3px;
    width: 15px; height: 15px; border-radius: 50%;
    background: var(--black); color: var(--white);
    font-family: 'Space Mono', monospace; font-size: 8px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(245,244,240,0.85);
  }

/* Nav arrow rotation for simple dropdown */
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown trigger link */
.nav-has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-arrow {
  font-size: 10px;
  opacity: 0.5;
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}
.has-dropdown:hover .nav-arrow { opacity: 1; }


  /* ─── HERO ─────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 48px 0 48px;
    position: relative;
    overflow: hidden;
    gap: 0;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 48px 80px 0;
    position: relative;
    z-index: 2;
  }
  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
  }

  .hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-tag::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--gray-400);
  }

  .hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 1.0;
    letter-spacing: -0.3px;
    max-width: 820px;
    margin-bottom: 36px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gray-600);
  }

  .hero-sub {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 480px;
    line-height: 1.65;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .btn-primary {
    background: var(--black);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  }

  .btn-ghost {
    color: var(--black);
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.2s;
  }

  .btn-ghost:hover { opacity: 1; }

  /* hero-bg-circle replaced */

  .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-100);
  }

  .stat-item { }

  .stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.3px;
  }

  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 4px;
  }

  /* ─── SECTION HEADERS ───────────────────── */
  .section {
    padding: 100px 48px;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
  }

  .section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -0.3px;
    line-height: 1.1;
  }

  .section-title em { font-style: italic; color: var(--gray-600); }

  .see-all {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    transition: opacity 0.2s;
    white-space: nowrap;
    margin-bottom: 4px;
  }

  .see-all:hover { opacity: 1; }

  /* ─── COURSES GRID ─────────────────────── */
  .courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .course-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }

  .course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  }

  .course-card.featured {
    grid-column: span 2;
    background: var(--black);
    color: var(--white);
  }

  .course-thumb {
    height: 220px;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .course-card.featured .course-thumb {
    background: #1a1a1a;
    height: 260px;
  }

  .course-thumb-pattern {
    width: 100%; height: 100%;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 39px, var(--gray-200) 39px, var(--gray-200) 40px),
      repeating-linear-gradient(90deg, transparent, transparent 39px, var(--gray-200) 39px, var(--gray-200) 40px);
    opacity: 0.8;
  }

  .course-card.featured .course-thumb-pattern {
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 39px, #2a2a2a 39px, #2a2a2a 40px),
      repeating-linear-gradient(90deg, transparent, transparent 39px, #2a2a2a 39px, #2a2a2a 40px);
    opacity: 1;
  }

  .course-thumb-icon {
    position: absolute;
    width: 64px; height: 64px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  .course-card.featured .course-thumb-icon {
    background: var(--black);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .course-body {
    padding: 28px;
  }

  .course-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: center;
  }

  .course-level {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gray-200);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: 100px;
  }

  .course-card.featured .course-level {
    background: #2a2a2a;
    color: var(--gray-200);
  }

  .course-duration {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #666;
  }

  .course-card.featured .course-duration { color: #aaa; }

  .course-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .course-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .course-card.featured .course-desc { color: #bbb; }

  .course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
  }

  .course-card.featured .course-footer { border-top-color: #2a2a2a; }

  .course-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    letter-spacing: -0.3px;
  }

  .course-enroll {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .course-card.featured .course-enroll {
    background: var(--white);
    color: var(--black);
  }

  .course-enroll:hover { opacity: 0.75; }

  /* ─── MARQUEE STRIP ──────────────────── */
  .marquee-strip {
    background: var(--black);
    color: var(--white);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(245,244,240,0.5);
  }

  .marquee-item::after {
    content: '◆';
    font-size: 8px;
    color: rgba(245,244,240,0.2);
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── BLOG SECTION ───────────────────── */
  .blog-section { background: var(--black); color: var(--white); }

  .blog-section .section-tag { color: #555; }
  .blog-section .section-title em { color: #555; }
  .blog-section .see-all { color: var(--white); }

  .blog-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #1a1a1a;
  }

  .blog-card {
    background: #111;
    padding: 36px;
    transition: background 0.2s;
    cursor: pointer;
    position: relative;
  }

  .blog-card:hover { background: #171717; }

  .blog-card.main {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #1a1a1a;
  }

  .blog-card:not(:last-child):not(.main) {
    border-bottom: 1px solid #1a1a1a;
  }

  .blog-card:nth-child(3) { border-left: 1px solid #1a1a1a; }

  .blog-date {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 16px;
  }

  .blog-category {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid #2a2a2a;
    color: #666;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  .blog-title {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
  }

  .blog-card.main .blog-title {
    font-size: 28px;
    flex: 1;
  }

  .blog-card:not(.main) .blog-title { font-size: 18px; }

  .blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .blog-read-more {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #888;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    margin-top: auto;
  }

  .blog-card:hover .blog-read-more { color: var(--white); }

  .blog-thumb {
    width: 100%;
    height: 180px;
    background: #1a1a1a;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog-thumb-pattern {
    width: 100%; height: 100%;
    background-image: radial-gradient(circle, #2a2a2a 1px, transparent 1px);
    background-size: 20px 20px;
  }

  /* ─── FEATURES SECTION ───────────────── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .feature-card {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s;
  }

  .feature-card:hover {
    border-color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }

  .feature-icon {
    width: 48px; height: 48px;
    background: var(--black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
  }

  .feature-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
  }

  /* ─── TESTIMONIALS ───────────────────── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }

  /* Pierwsza karta — wyróżniona, ciemna, zajmuje całą lewą kolumnę */
  .testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .testimonial-card.t-featured {
    background: #0a0a0a;
    border-color: #0a0a0a;
    grid-row: 1 / 3;
    justify-content: space-between;
    padding: 44px 48px;
  }

  .testimonial-stars {
    display: flex;
    gap: 4px;
  }
  .testimonial-stars span {
    color: #c9a84c;
    font-size: 14px;
  }
  .t-featured .testimonial-stars span {
    color: #c9a84c;
  }

  .testimonial-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: -0.2px;
    color: #1a1a1a;
    flex: 1;
  }
  .t-featured .testimonial-quote {
    font-size: 18px;
    line-height: 1.65;
    color: #f0f0f0;
    letter-spacing: -.3px;
  }

  .testimonial-tag {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #888;
    background: var(--gray-100);
    border-radius: 100px;
    padding: 4px 10px;
    margin-bottom: 4px;
  }
  .t-featured .testimonial-tag {
    color: #c9a84c;
    background: #1a1600;
    border: 1px solid #2a2000;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
  }
  .t-featured .testimonial-author {
    border-top-color: #1e1e1e;
  }

  .author-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
  }
  .t-featured .author-avatar {
    background: #222;
    color: #f0f0f0;
  }

  .author-name {
    font-weight: 600;
    font-size: 13.5px;
    color: var(--black);
  }
  .t-featured .author-name { color: #f0f0f0; }

  .author-role {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--gray-400);
    margin-top: 3px;
    letter-spacing: .04em;
  }
  .t-featured .author-role { color: #555; }

  /* ─── CTA SECTION ───────────────────── */
  .cta-section {
    padding: 60px 48px 100px;
  }

  .cta-box {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }

  .cta-box::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    pointer-events: none;
  }

  .cta-box::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -80px;
    width: 250px; height: 250px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    pointer-events: none;
  }

  .cta-content { position: relative; z-index: 1; }

  .cta-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 16px;
  }

  .cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    letter-spacing: -0.3px;
    line-height: 1.1;
  }

  .cta-title em { font-style: italic; color: #555; }

  .cta-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .btn-white {
    background: var(--white);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
  }

  .btn-white:hover { opacity: 0.85; }

  .btn-outline-white {
    border: 1px solid #333;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    text-decoration: none;
    transition: border-color 0.2s;
    white-space: nowrap;
  }

  .btn-outline-white:hover { border-color: #555; }

  /* ─── FOOTER ─────────────────────────── */
  footer {
    background: #0d0d0d;
    padding: 0;
  }

  .footer-contact-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: #141414;
    border-top: 1px solid #232323;
    border-bottom: 1px solid #232323;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-contact-bar-left {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    transition: color .2s;
  }
  .footer-contact-item-icon {
    width: 28px; height: 28px;
    background: #191610;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    color: #c9a84c;
  }
  .footer-contact-item-text {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #ccc;
    letter-spacing: .04em;
  }
  .footer-contact-item:hover .footer-contact-item-text { color: #e0c97f; }
  .footer-contact-item:hover .footer-contact-item-icon { background: #2a2a2a; color: #f5f4f0; }
  .footer-contact-bar-right {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: #bbb;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 60px 48px 60px;
    border-bottom: 1px solid #1e1e1e;
  }

  .footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    letter-spacing: -.4px;
    margin-bottom: 14px;
    line-height: 1;
  }
  .footer-logo span:first-child { font-weight: 300; color: #e0e0e0; }
  .footer-logo span:last-child  { font-weight: 700; color: #f5f4f0; }

  .footer-tagline {
    font-size: 13.5px;
    color: #999;
    line-height: 1.75;
    max-width: 260px;
    margin-bottom: 28px;
  }

  .footer-social {
    display: flex;
    gap: 8px;
  }

  .social-btn {
    width: 32px; height: 32px;
    border: 1px solid #2e2e2e;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    color: #888;
    transition: border-color .2s, color .2s, background .2s;
  }
  .social-btn:hover { border-color: #444; color: #f5f4f0; background: #1a1a1a; }

  .footer-col-title {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
  }

  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 11px; }
  .footer-links a {
    font-size: 13.5px;
    color: #999;
    text-decoration: none;
    transition: color .2s;
  }
  .footer-links a:hover { color: #f5f4f0; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    gap: 16px;
  }

  .footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: #666;
    letter-spacing: .06em;
  }

  .footer-badges {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .footer-badge {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: #555;
    border: 1px solid #222;
    border-radius: 100px;
    padding: 5px 12px;
    letter-spacing: .06em;
    text-decoration: none;
    transition: color .2s, border-color .2s;
  }
  .footer-badge-link:hover { color: #aaa; border-color: #444; }

  /* ─── ANIMATIONS ──────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero h1 { animation: fadeUp 0.8s ease both; }
  .hero-sub { animation: fadeUp 0.8s 0.15s ease both; }
  .hero-actions { animation: fadeUp 0.8s 0.25s ease both; }
  .hero-stats { animation: fadeUp 0.8s 0.35s ease both; }

  @media (max-width: 1024px) {
    nav, .section, .hero { padding-left: 24px; padding-right: 24px; }
    .courses-grid { grid-template-columns: 1fr 1fr; }
    .course-card.featured { grid-column: span 2; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card.main { grid-row: auto; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cta-box { flex-direction: column; align-items: flex-start; padding: 48px; }
  }

  @media (max-width: 640px) {
    .courses-grid { grid-template-columns: 1fr; }
    .course-card.featured { grid-column: 1; }
    .features-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 44px; letter-spacing: -0.3px; }
    .footer-top { grid-template-columns: 1fr; }
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .hero { padding: 120px 20px 60px; }
    .section { padding: 60px 20px; }
  }



/* ══════════════════════════════════════════════════════
   SOCIAL PROOF BAR
══════════════════════════════════════════════════════ */
.proof-bar {
  background: var(--black);
  border-bottom: 1px solid #1a1a1a;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 99;
  overflow: hidden;
}
.proof-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 0;
  height: 38px;
}
.proof-item {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245,244,240,0.78);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 0 20px;
}
.proof-check {
  color: rgba(245,244,240,1.0);
  font-size: 12px;
}
.proof-divider {
  width: 1px;
  height: 14px;
  background: #2a2a2a;
  flex-shrink: 0;
}
/* push hero down for proof bar */
.hero { padding-top: calc(var(--nav-h) + 38px + 60px) !important; }

/* ══════════════════════════════════════════════════════
   MEGA MENU
══════════════════════════════════════════════════════ */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; }

/* mega menu removed */

/* ══════════════════════════════════════════════════════
   ŚCIEŻKA NAUKI A1→A2→STS
══════════════════════════════════════════════════════ */
.path-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 48px;
}
.path-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.path-section .section-tag { color: #444; margin-bottom: 12px; }
.path-section .section-title { color: var(--white); margin-bottom: 56px; }
.path-section .section-title em { color: #444; }

.path-timeline {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: start;
  gap: 0;
}
.path-card {
  background: #111;
  border: 1.5px solid #1e1e1e;
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.path-card:hover { border-color: #444; transform: translateY(-4px); }
.path-card-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}
.path-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.path-card-level {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  border: 1px solid #444;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 14px;
}
.path-card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.path-card-desc {
  font-size: 14px;
  color: #999;
  line-height: 1.65;
  margin-bottom: 24px;
}
.path-card-price {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.path-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
}
.path-card-features li {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 8px;
}
.path-card-features li::before { content: '✓'; color: #888; font-weight: 700; }
.path-card-cta {
  display: block;
  text-align: center;
  border: 1.5px solid #444;
  color: #aaa;
  padding: 11px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-decoration: none;
  transition: 0.2s;
}
.path-card-cta:hover { border-color: #666; color: var(--white); }
.path-card.path-featured { background: #0f0f0f; border-color: #333; }
.path-card.path-featured .path-card-cta {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  font-weight: 600;
}
.path-card.path-featured .path-card-cta:hover { opacity: 0.85; }

.path-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  color: #2a2a2a;
  font-size: 22px;
}

/* ══════════════════════════════════════════════════════
   O INSTRUKTORZE
══════════════════════════════════════════════════════ */
.instructor-section {
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.instructor-photo-wrap {
  position: relative;
}
.instructor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.instructor-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.instructor-photo-initial {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 96px;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}
.instructor-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 1.5px solid var(--gray-200);
}
.instructor-badge-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.instructor-badge-val {
  font-size: 14px;
  font-weight: 600;
}
.instructor-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--black);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.instructor-content { }
.instructor-content .section-tag { margin-bottom: 12px; }
.instructor-name {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.instructor-title {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: #666;
  margin-bottom: 28px;
}
.instructor-bio {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
}
.instructor-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.instructor-stat {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
}
.instructor-stat-val {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.instructor-stat-key {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
}
.instructor-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.instructor-cred {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  padding: 6px 14px;
  border-radius: 100px;
}
.instructor-actions { display: flex; gap: 12px; }
.btn-secondary {
  border: 1.5px solid var(--gray-200);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s;
}
.btn-secondary:hover { border-color: var(--black); }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 48px;
  background: var(--gray-100);
}
.faq-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: calc(var(--nav-h) + 38px + 24px); }
.faq-left .section-tag { margin-bottom: 12px; }
.faq-left .section-title { margin-bottom: 20px; }
.faq-left-sub {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}
.faq-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-contact-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
}
.faq-contact-email {
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--black);
  transition: opacity 0.2s;
}
.faq-contact-email:hover { opacity: 0.6; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--black); }
.faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s;
  user-select: none;
}
.faq-question:hover { background: var(--gray-100); }
.faq-item.open .faq-question { background: var(--black); color: var(--white); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 16px; font-weight: 300;
  flex-shrink: 0;
  transition: 0.2s;
  color: var(--gray-400);
}
.faq-item.open .faq-icon { border-color: #333; background: #1a1a1a; color: var(--white); }
.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 4px 28px 24px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .path-timeline { grid-template-columns: 1fr; gap: 20px; }
  .path-arrow { display: none; }
  .instructor-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-section-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .proof-bar-inner { gap: 0; overflow-x: auto; }
}
@media (max-width: 640px) {
  .path-section { padding: 60px 20px; }
  .instructor-section { padding: 60px 20px; }
  .faq-section { padding: 60px 20px; }
  .instructor-stats { grid-template-columns: 1fr 1fr; }
}



/* ══════════════════════════════════════════════════════
   HERO GRID ADJUSTMENTS
══════════════════════════════════════════════════════ */
.hero { padding-top: calc(var(--nav-h) + 38px) !important; }
.hero-left { padding-top: calc(var(--nav-h) + 38px + 40px) !important; }

/* override flex+column from before */
.hero { display: grid !important; flex-direction: unset !important; }

/* stats need no top margin in grid */
.hero-stats { margin-top: 48px; }

/* ══════════════════════════════════════════════════════
   DRONE SCENE CONTAINER
══════════════════════════════════════════════════════ */
.drone-scene {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  pointer-events: none;
}

/* ── RINGS ───────────────────────────────────────────── */
.drone-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: ringsRotate 40s linear infinite;
  transform-origin: center;
}

@keyframes ringsRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* orbit dot rides the ring */
.orbit-dot {
  transform-origin: 260px 260px;
  animation: orbitDot 8s linear infinite;
}
@keyframes orbitDot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── DRONE BODY ─────────────────────────────────────── */
.drone-body {
  position: absolute;
  width: 200px;
  height: 160px;
  /* gentle hover float */
  animation: droneFloat 3.6s ease-in-out infinite;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.18));
}

@keyframes droneFloat {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-10px) rotate(0.6deg); }
  50%  { transform: translateY(-14px) rotate(0deg); }
  75%  { transform: translateY(-8px) rotate(-0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ── PROPELLERS ─────────────────────────────────────── */
.prop-tl { animation: spinCW 0.18s linear infinite; }
.prop-tr { animation: spinCCW 0.18s linear infinite; }
.prop-bl { animation: spinCCW 0.18s linear infinite; }
.prop-br { animation: spinCW 0.18s linear infinite; }

@keyframes spinCW  { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes spinCCW { from { transform: rotate(0deg); }   to { transform: rotate(-360deg); } }

/* ── LED BLINK ─────────────────────────────────────── */
.led-blink {
  animation: ledPulse 1.4s ease-in-out infinite;
}
@keyframes ledPulse {
  0%, 100% { opacity: 0.2; r: 2; }
  50%       { opacity: 1;   r: 3; }
}

/* ── FLOATING BADGES ──────────────────────────────── */
.drone-badge {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  white-space: nowrap;
}
.drone-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}
.drone-badge-title {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.drone-badge-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}

.drone-badge-1 {
  top: 52px; left: -20px;
  animation: badgeFloat1 4.2s ease-in-out infinite;
}
.drone-badge-2 {
  bottom: 90px; right: -30px;
  animation: badgeFloat2 3.8s ease-in-out infinite 0.6s;
}
.drone-badge-3 {
  top: 160px; right: -10px;
  animation: badgeFloat3 4.6s ease-in-out infinite 1.2s;
}

@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes badgeFloat3 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ── ALTITUDE LINE ──────────────────────────────────── */
.alt-line {
  position: absolute;
  right: 40px; top: 50%; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gray-200) 30%, var(--gray-200) 70%, transparent);
  transform: translateY(-40%);
  opacity: 0.6;
}
.alt-line::before {
  content: '';
  position: absolute;
  top: 0; left: -3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gray-400);
  animation: altDot 3.6s ease-in-out infinite;
}
@keyframes altDot {
  0%, 100% { top: 42%; opacity: 0.4; }
  50%       { top: 30%; opacity: 1; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr !important; }
  .hero-right { display: none !important; }
  .hero-left { padding-right: 0 !important; }
}



/* ══════════════════════════════════════════════════
   PROSTE DROPDOWN (zamiast mega menu)
══════════════════════════════════════════════════ */
.has-dropdown { position: relative; }

.simple-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  padding: 10px;
  min-width: 220px;
  z-index: 300;
  animation: dropFade .16s ease both;
}
@keyframes dropFade {
  from { opacity:0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}
.has-dropdown:hover .simple-dropdown { display: block; }

.sdrop-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #999;
  padding: 6px 12px 4px;
}
.sdrop-group { margin-bottom: 4px; }
.sdrop-divider { height: 1px; background: var(--gray-100); margin: 6px 0; }
.sdrop-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: background .15s;
  gap: 12px;
}
.sdrop-item:hover { background: var(--gray-100); }
.sdrop-soon { opacity: .55; }
.sdrop-price {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #666;
  font-weight: 400;
}
.sdrop-badge {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 100px;
}
.sdrop-all {
  display: block;
  text-align: center;
  padding: 9px;
  background: var(--black);
  color: var(--white) !important;
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-decoration: none;
  transition: opacity .2s;
  margin-top: 4px;
}
.sdrop-all:hover { opacity: .8; }
.nav-links .sdrop-all { color: var(--white) !important; }

/* ══════════════════════════════════════════════════
   FILTR KATEGORII KURSÓW
══════════════════════════════════════════════════ */
.courses-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: #555;
  cursor: pointer;
  transition: .2s;
}
.filter-btn:hover  { border-color: #999; color: var(--black); }
.filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* "Wkrótce" badge na karcie kursu */
.course-soon-badge {
  background: var(--black) !important;
  color: #aaa !important;
  font-family: 'Space Mono', monospace;
  font-size: 9px !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 3px 10px !important;
}
.course-soon { opacity: .72; }

/* ══════════════════════════════════════════════════
   SEKCJA DOFINANSOWAŃ
══════════════════════════════════════════════════ */
.funding-section {
  background: var(--gray-100);
  border-top: 1.5px solid var(--gray-200);
  border-bottom: 1.5px solid var(--gray-200);
  padding: 96px 48px;
}
.funding-inner { max-width: 1280px; margin: 0 auto; }

.funding-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 52px;
}

.funding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.funding-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .25s, box-shadow .25s;
}
.funding-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}
.funding-card-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.funding-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.funding-card-badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
  font-weight: 700;
}
.funding-card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.funding-card-dark .funding-card-title { color: var(--white); }

.funding-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}
.funding-card-dark .funding-card-desc { color: #999; }

.funding-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
  flex: 1;
}
.funding-card-list li {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.funding-card-list li::before { content: '✓'; font-weight: 700; color: var(--black); }
.funding-card-dark .funding-card-list li { color: #888; }
.funding-card-dark .funding-card-list li::before { color: #666; }

.funding-card-cta {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 2px;
  transition: .2s;
  align-self: flex-start;
}
.funding-card-cta:hover { border-color: var(--black); }
.funding-card-dark .funding-card-cta { color: #888; border-color: #333; }
.funding-card-dark .funding-card-cta:hover { color: var(--white); border-color: #666; }

/* Bottom strip */
.funding-strip {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.funding-strip-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.funding-strip-text strong { color: var(--black); }
.funding-strip-btn {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  white-space: nowrap;
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .2s;
}
.funding-strip-btn:hover { opacity: .75; }

/* Responsive */
@media (max-width: 1024px) {
  .funding-grid { grid-template-columns: 1fr; }
  .funding-header { flex-direction: column; align-items: flex-start; }
  .funding-strip { flex-direction: column; align-items: flex-start; }
  .funding-section { padding: 60px 24px; }
}


/* Outline CTA dla kart informacyjnych */
.course-enroll-outline {
  background: transparent !important;
  border: 1.5px solid var(--black) !important;
  color: var(--black) !important;
}
.course-enroll-outline:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}


/* bundle card removed */


/* ── BANER PAKIETOWY ──────────────────────────────── */
.path-bundle-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 22px 32px;
  background: #0f0f0f;
  border: 1.5px solid #c9a84c;
  border-radius: var(--radius-lg);
  position: relative;
}

.path-bundle-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.path-bundle-bar-tag {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: #c9a84c;
  color: #0a0a0a;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.path-bundle-bar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.2px;
}

.path-bundle-bar-sub {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #666;
  letter-spacing: .06em;
  flex-basis: 100%;
  margin-top: -8px;
  padding-left: calc(9px*2 + 10px*2 + 6em + 16px); /* align under title */
}

.path-bundle-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.path-bundle-bar-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.path-bundle-bar-old {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: #444;
  text-decoration: line-through;
}

.path-bundle-bar-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: -.5px;
}

.path-bundle-bar-save {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #c9a84c;
  background: rgba(201,168,76,.12);
  padding: 3px 8px;
  border-radius: 100px;
}

.path-bundle-bar-cta {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  background: #c9a84c;
  color: #0a0a0a;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s;
  letter-spacing: .04em;
}
.path-bundle-bar-cta:hover { background: #e0c97f; }

@media (max-width: 768px) {
  .path-bundle-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }
  .path-bundle-bar-sub { padding-left: 0; margin-top: 4px; }
  .path-bundle-bar-right { width: 100%; justify-content: space-between; }
}

@media (max-width: 480px) {
  .path-bundle-bar-right { flex-direction: column; align-items: flex-start; gap: 12px; }
  .path-bundle-bar-cta { width: 100%; text-align: center; }
  .path-bundle-bar-title { font-size: 14px; }
}



/* ════════════════════════════════════════════════════════
   KOMPLEKSOWY RESPONSIVE — wszystkie breakpointy
   768px = tablet pionowy, 480px = mobile
════════════════════════════════════════════════════════ */

/* ── HAMBURGER MENU ────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 200;
  overflow-y: auto;
  padding: 24px 20px 48px;
  border-top: 1.5px solid var(--gray-200);
}
.nav-mobile-drawer.open { display: block; }

.nav-mobile-group {
  margin-bottom: 8px;
  border-bottom: 1.5px solid var(--gray-100);
}
.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}
.nav-mobile-toggle-arrow {
  font-size: 12px;
  color: #888;
  transition: transform .2s;
}
.nav-mobile-group.open .nav-mobile-toggle-arrow { transform: rotate(180deg); }

.nav-mobile-submenu {
  display: none;
  padding: 0 0 16px 8px;
}
.nav-mobile-group.open .nav-mobile-submenu { display: block; }

.nav-mobile-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #999;
  padding: 10px 4px 4px;
}
.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 4px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
}
.nav-mobile-link:active { background: var(--gray-100); }
.nav-mobile-divider { height: 1px; background: var(--gray-100); margin: 6px 0; }

.nav-mobile-cta {
  display: block;
  text-align: center;
  background: var(--black);
  color: var(--white) !important;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  text-decoration: none;
  margin-top: 16px;
}

/* ── BREAKPOINT 1024px ─────────────────────────────── */
@media (max-width: 1024px) {

  /* NAV */
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }

  /* HERO */
  .hero {
    grid-template-columns: 1fr !important;
    padding: 100px 32px 60px !important;
    text-align: center;
  }
  .hero-right { display: none !important; }
  .hero h1 { font-size: 52px; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-tag { justify-content: center; display: flex; }

  /* KURSY */
  .courses-filter { gap: 6px; }
  .filter-btn { font-size: 10px; padding: 7px 14px; }
  .courses-grid { grid-template-columns: 1fr 1fr !important; }
  .course-card.featured { grid-column: span 2 !important; }

  /* FEATURES */
  .features-grid { grid-template-columns: 1fr 1fr !important; }

  /* ŚCIEŻKA NAUKI */
  .path-section { padding: 60px 32px; }
  .path-timeline {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
  }
  .path-arrow { display: none !important; }
  /* Karta bundle na pełną szerokość */
  .path-bundle { grid-column: span 2; }

  /* DOFINANSOWANIA */
  .funding-grid { grid-template-columns: 1fr 1fr !important; }
  .funding-section { padding: 60px 32px; }
  .funding-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .funding-strip { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* INSTRUKTOR */
  .instructor-grid { grid-template-columns: 1fr !important; gap: 48px; }

  /* FAQ */
  .faq-section-inner { grid-template-columns: 1fr !important; gap: 40px; }
  .faq-left { position: static !important; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr 1fr; } .t-featured { grid-row: auto; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 40px; } footer { padding: 56px 32px 0; }
  .cta-box { flex-direction: column; align-items: flex-start; padding: 40px; }
}

/* ── BREAKPOINT 768px ──────────────────────────────── */
@media (max-width: 768px) {

  /* SEKCJE — mniejszy padding */
  .section { padding: 60px 20px !important; }
  nav { padding: 16px 20px; }

  /* HERO */
  .hero { padding: 90px 20px 50px !important; }
  .hero h1 { font-size: 40px; letter-spacing: -.5px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { flex-direction: column; gap: 12px; align-items: center; }
  .hero-stat-divider { display: none; }
  .hero-btns { flex-direction: column; gap: 10px; align-items: center; }
  .hero-btns a { width: 100%; text-align: center; }

  /* PROOF BAR */
  .proof-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 0;
    padding: 10px 16px;
  }
  .proof-divider { display: none; }
  .proof-item { font-size: 11px; padding: 4px 12px; }

  /* KURSY */
  .courses-grid { grid-template-columns: 1fr !important; }
  .course-card.featured { grid-column: 1 !important; }
  .section-header { flex-direction: column; gap: 16px; align-items: flex-start; }

  /* FEATURES */
  .features-grid { grid-template-columns: 1fr !important; }

  /* ŚCIEŻKA NAUKI */
  .path-section { padding: 60px 20px; }
  .path-timeline { grid-template-columns: 1fr !important; }
  .path-bundle { grid-column: 1 !important; }
  .path-bundle-badge { font-size: 8px; }

  /* DOFINANSOWANIA */
  .funding-grid { grid-template-columns: 1fr !important; }
  .funding-section { padding: 60px 20px; }
  .funding-card { padding: 28px 24px; }
  .funding-strip { padding: 20px 24px; }

  /* INSTRUKTOR */
  .instructor-section { padding: 60px 20px; }
  .instructor-stats { grid-template-columns: 1fr 1fr; }
  .instructor-creds { flex-wrap: wrap; }

  /* FAQ */
  .faq-section { padding: 60px 20px; }
  .faq-item { padding: 18px 0; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; } .t-featured { grid-row: auto; }

  /* MARQUEE */
  .marquee-section { padding: 16px 0; }

  /* BLOG */
  .blog-grid { grid-template-columns: 1fr !important; }
  .blog-card.main { grid-row: auto !important; }

  /* CTA */
  .cta-box { padding: 32px 24px; }
  .cta-box h2 { font-size: 28px; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr !important; gap: 32px; } .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; } footer { padding: 48px 20px 0; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  footer { padding: 48px 20px 32px; }
}

/* ── BREAKPOINT 480px (mały telefon) ───────────────── */
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 28px; }

  .path-card { padding: 24px 20px; }
  .path-bundle-pricing { gap: 4px; }
  .path-bundle-price { font-size: 24px !important; }

  .funding-card-title { font-size: 18px; }

  .instructor-name { font-size: 36px; }
  .instructor-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .instructor-stat-val { font-size: 28px; }

  .courses-filter { gap: 6px; }
  .filter-btn { font-size: 9px; padding: 6px 10px; }

  .faq-question { font-size: 15px; }

  .footer-links-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: #0a0a0a;
  color: #888;
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 16px;
}
.footer-desc { font-size: 13px; color: #555; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: #111; border: 1px solid #1e1e1e;
  display: flex; align-items: center; justify-content: center;
  color: #555; transition: background .15s, color .15s; text-decoration: none;
}
.footer-social-btn:hover { background: #1e1e1e; color: #f0f0f0; }
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: #333;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: #555; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: #f0f0f0; }
.footer-contact-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; }
.footer-contact-list svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-list a { color: #555; text-decoration: none; transition: color .15s; }
.footer-contact-list a:hover { color: #f0f0f0; }
.footer-bottom {
  border-top: 1px solid #111;
  padding: 20px 48px;
}
.footer-bottom-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: #333; font-family: 'Space Mono', monospace; }
.footer-bottom-links { display: flex; gap: 12px; align-items: center; font-family: 'Space Mono', monospace; font-size: 11px; }
.footer-bottom-links a { color: #333; text-decoration: none; transition: color .15s; }
.footer-bottom-links a:hover { color: #f0f0f0; }
.footer-bottom-links span { color: #222; }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  font-family: 'Space Mono', monospace; font-size: 9px;
  padding: 4px 10px; border-radius: 100px;
  background: #111; border: 1px solid #1e1e1e; color: #444;
  letter-spacing: .08em;
}
.footer-badge--gold { background: #1a1200; border-color: #2a2000; color: #c9a84c; }

/* ═══════════════════════════════════════════
   COURSE CARD COMPONENTS
═══════════════════════════════════════════ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.courses-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }

.course-card {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 24px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: #aaa;
}
.course-card--soon { opacity: .75; }

.course-card-thumb {
  height: 200px;
  background: #f0f0f0 center/cover no-repeat;
  position: relative;
}
.course-card-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; opacity: .15;
}
.course-thumb-pills {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.thumb-pill {
  background: rgba(10,10,10,.85);
  border-radius: 100px; padding: 5px 12px;
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: #f0f0f0; display: flex; align-items: center; gap: 6px;
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pill-dot--green { background: #22c55e; box-shadow: 0 0 8px #22c55e88; }
.pill-dot--gold  { background: #c9a84c; box-shadow: 0 0 8px #c9a84c44; }
.pill-dot--blue  { background: #60a5fa; box-shadow: 0 0 8px #60a5fa44; }

.course-card-body { padding: 24px 24px 12px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.course-card-meta-row { display: flex; gap: 6px; flex-wrap: wrap; }
.course-cat-tag, .course-level-tag, .course-mode-tag {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  background: #f5f4f0; color: #666; border: 1px solid #ebebeb;
}
.course-card-title { font-size: 18px; font-weight: 700; letter-spacing: -.3px; line-height: 1.2; }
.course-card-title a { text-decoration: none; color: #0a0a0a; transition: color .15s; }
.course-card-title a:hover { color: #444; }
.course-card-desc { font-size: 13px; color: #666; line-height: 1.6; }

.course-card-specs { display: flex; gap: 12px; flex-wrap: wrap; }
.course-spec {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Space Mono', monospace; font-size: 10px; color: #888;
}
.course-spec svg { width: 13px; height: 13px; stroke: #aaa; flex-shrink: 0; }

.course-card-schedule { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.schedule-date {
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: #666; padding: 4px 10px; background: #f5f4f0;
  border-radius: 100px; border: 1px solid #ebebeb;
}
.schedule-spots {
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: #22c55e; font-weight: 700;
}
.schedule-spots--low { color: #ef4444; }

.course-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 24px; border-top: 1.5px solid #ebebeb;
  gap: 12px;
}
.course-price-wrap { display: flex; align-items: baseline; gap: 8px; }
.course-price { font-size: 22px; font-weight: 700; letter-spacing: -.3px; color: #0a0a0a; }
.course-price-old { font-size: 14px; color: #aaa; text-decoration: line-through; font-family: 'Space Mono', monospace; }

.course-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: 'Space Mono', monospace; font-size: 9px;
  font-weight: 700; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 100px;
}
.badge--hot { background: #1a0a00; color: #fb923c; border: 1px solid #2a1200; }
.badge--new { background: #001a0a; color: #22c55e; border: 1px solid #002a12; }
.badge--mon { background: #1a1200; color: #c9a84c; border: 1px solid #2a2000; }

.status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Space Mono', monospace; font-size: 9px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.pill--active  { background: #001a0a; color: #22c55e; border: 1px solid #002a12; }
.pill--soon    { background: #1a1200; color: #c9a84c; border: 1px solid #2a2000; }
.pill--full    { background: #1a0000; color: #ef4444; border: 1px solid #2a0000; }
.pill--inactive{ background: #111;    color: #555;    border: 1px solid #1e1e1e; }

/* ── Buttons ── */
.btn-enroll {
  background: #0a0a0a; color: #f5f4f0;
  padding: 10px 18px; border-radius: 100px;
  font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 700;
  text-decoration: none; white-space: nowrap; transition: opacity .2s;
}
.btn-enroll:hover { opacity: .75; }
.btn-disabled {
  background: #f0f0f0; color: #aaa;
  padding: 10px 18px; border-radius: 100px;
  font-family: 'Space Mono', monospace; font-size: 11px;
  white-space: nowrap; cursor: not-allowed; display: inline-block;
}
.btn-disabled--full { background: #1a0000; color: #ef4444; }

.btn-primary {
  background: #0a0a0a; color: #f5f4f0;
  padding: 14px 28px; border-radius: 100px;
  font-family: 'Space Mono', monospace; font-size: 13px; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .75; }
.btn-ghost {
  background: transparent; color: #666;
  padding: 14px 24px; border-radius: 100px;
  border: 1.5px solid #d4d4d4;
  font-family: 'Space Mono', monospace; font-size: 13px;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: #0a0a0a; color: #0a0a0a; }
.btn-ghost-sm {
  background: transparent; color: #666;
  padding: 10px 18px; border-radius: 100px;
  border: 1.5px solid #d4d4d4;
  font-family: 'Space Mono', monospace; font-size: 11px;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: border-color .2s, color .2s; white-space: nowrap;
}
.btn-ghost-sm:hover { border-color: #0a0a0a; color: #0a0a0a; }
.btn-block { display: block; text-align: center; width: 100%; box-sizing: border-box; }
.btn-enroll.btn-block { padding: 14px; border-radius: 14px; font-size: 13px; }
.btn-ghost-block {
  display: block; text-align: center; width: 100%; box-sizing: border-box;
  border: 1.5px solid #ebebeb; border-radius: 14px;
  padding: 12px; color: #666; text-decoration: none;
  font-family: 'Space Mono', monospace; font-size: 12px;
  transition: border-color .2s, color .2s; margin-top: 8px;
}
.btn-ghost-block:hover { border-color: #0a0a0a; color: #0a0a0a; }

/* ═══════════════════════════════════════════
   SECTIONS — STRONA GŁÓWNA
═══════════════════════════════════════════ */
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 40px; gap: 24px;
}
.section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: #888; margin-bottom: 8px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; letter-spacing: -.5px; line-height: 1.05;
}
.section-title em { font-style: italic; color: #aaa; }

/* Kursy */
.section-courses { padding: 96px 0; }
/* Features */
.section-features { background: #f5f4f0; padding: 96px 0; border-top: 1.5px solid #ebebeb; border-bottom: 1.5px solid #ebebeb; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #fff; border: 1.5px solid #ebebeb; border-radius: 20px; padding: 32px; }
.feature-card:hover { border-color: #aaa; }
.feature-icon { font-size: 32px; margin-bottom: 16px; filter: grayscale(1); }
.feature-card h3 { font-size: 16px; font-weight: 700; letter-spacing: -.2px; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: #666; line-height: 1.65; }
/* Blog */
.section-blog { padding: 96px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* Newsletter */
.section-newsletter { background: #0a0a0a; padding: 80px 0; }
.newsletter-card { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.newsletter-title { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -.5px; color: #f0f0f0; }
.newsletter-title em { font-style: italic; color: #444; }
.newsletter-sub { font-size: 14px; color: #666; margin-top: 8px; }
.newsletter-inputs { display: flex; gap: 8px; margin-bottom: 8px; }
.newsletter-input { flex: 1; padding: 12px 18px; border: 1.5px solid #222; border-radius: 100px; background: #111; color: #f0f0f0; font-family: 'Space Grotesk', sans-serif; font-size: 14px; outline: none; transition: border-color .2s; }
.newsletter-input:focus { border-color: #444; }
.newsletter-btn { background: #f5f4f0; color: #0a0a0a; padding: 12px 22px; border-radius: 100px; border: none; cursor: pointer; font-family: 'Space Mono', monospace; font-size: 12px; font-weight: 700; white-space: nowrap; transition: opacity .2s; }
.newsletter-btn:hover { opacity: .85; }
.newsletter-note { font-family: 'Space Mono', monospace; font-size: 10px; color: #333; }

/* Instructor */
.section-instructor { padding: 96px 0; }
.instructor-card { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
.instructor-photo { width: 100%; aspect-ratio: 1; border-radius: 24px; overflow: hidden; background: #f0f0f0; }
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 96px; font-weight: 700; color: #ccc; background: #f5f4f0; }
.instructor-name { font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; letter-spacing: -.5px; margin-bottom: 6px; }
.instructor-title { font-family: 'Space Mono', monospace; font-size: 11px; color: #888; letter-spacing: .05em; margin-bottom: 20px; }
.instructor-bio { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 28px; }
.instructor-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   SINGLE COURSE
═══════════════════════════════════════════ */
.course-hero {
  background: #0a0a0a; padding: calc(72px + 60px) 48px 60px;
  background-size: cover; background-position: center;
}
.course-hero-inner { max-width: 1280px; margin: 0 auto; }
.course-hero-title { font-size: clamp(32px, 4.5vw, 64px); font-weight: 700; letter-spacing: -.5px; line-height: 1.05; color: #f0f0f0; margin: 16px 0; }
.course-hero-desc { font-size: 16px; color: #888; line-height: 1.65; max-width: 600px; margin-bottom: 24px; }
.course-hero-specs { display: flex; gap: 0; border: 1px solid #1e1e1e; border-radius: 16px; overflow: hidden; width: fit-content; margin-top: 24px; }
.course-hero-spec { padding: 16px 28px; border-right: 1px solid #1e1e1e; text-align: center; }
.course-hero-spec:last-child { border-right: none; }
.spec-val { font-size: 24px; font-weight: 700; color: #f0f0f0; letter-spacing: -.3px; }
.spec-label { font-family: 'Space Mono', monospace; font-size: 9px; color: #555; letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }

.course-layout { padding: 64px 0; }
.course-layout-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.course-content { display: flex; flex-direction: column; gap: 48px; }
.course-section-title { font-size: 24px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 20px; }
.course-learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.learn-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #333; }
.learn-check { color: #c9a84c; font-weight: 700; flex-shrink: 0; }
.course-requirements { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.course-requirements li { font-size: 14px; color: #555; padding-left: 16px; position: relative; }
.course-requirements li::before { content: '→'; position: absolute; left: 0; color: #aaa; }

.course-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 16px; }
.buy-card { background: #fff; border: 1.5px solid #ebebeb; border-radius: 24px; overflow: hidden; }
.buy-card-thumb { height: 180px; background: #f0f0f0 center/cover no-repeat; }
.buy-card-rating { display: flex; align-items: center; gap: 6px; padding: 16px 24px 0; }
.stars { color: #c9a84c; font-size: 14px; }
.rating-val { font-weight: 700; font-size: 14px; }
.rating-count { font-family: 'Space Mono', monospace; font-size: 10px; color: #888; }
.buy-card-price-wrap { padding: 12px 24px; display: flex; align-items: baseline; gap: 10px; }
.buy-price { font-size: 32px; font-weight: 700; letter-spacing: -.5px; }
.buy-price-old { font-size: 16px; color: #aaa; text-decoration: line-through; font-family: 'Space Mono', monospace; }
.buy-discount { font-family: 'Space Mono', monospace; font-size: 10px; color: #22c55e; font-weight: 700; padding: 3px 8px; background: #001a0a; border-radius: 100px; }
.buy-card-schedule { padding: 0 24px 12px; display: flex; flex-direction: column; gap: 6px; }
.buy-schedule-item { font-family: 'Space Mono', monospace; font-size: 11px; color: #555; }
.buy-schedule-item--urgent { color: #ef4444; }
.buy-card-price-wrap + .btn-enroll,
.buy-card > .btn-enroll { margin: 0 24px; }
.buy-card-checklist { list-style: none; padding: 16px 24px; border-top: 1.5px solid #ebebeb; display: flex; flex-direction: column; gap: 8px; }
.buy-card-checklist li { font-family: 'Space Mono', monospace; font-size: 11px; color: #555; }
.course-contact-card { background: #f5f4f0; border: 1.5px solid #ebebeb; border-radius: 16px; padding: 20px; }
.course-contact-label { font-family: 'Space Mono', monospace; font-size: 10px; color: #aaa; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.course-contact-phone { display: block; font-size: 20px; font-weight: 700; color: #0a0a0a; text-decoration: none; margin-bottom: 4px; }
.course-contact-email { display: block; font-family: 'Space Mono', monospace; font-size: 11px; color: #888; text-decoration: none; }

/* ═══════════════════════════════════════════
   ARCHIVE HERO + FILTERS
═══════════════════════════════════════════ */
.archive-hero { background: #0a0a0a; padding: calc(72px + 60px) 48px 60px; }
.archive-hero-inner { max-width: 1280px; margin: 0 auto; }
.archive-title { font-size: clamp(36px, 5vw, 72px); font-weight: 700; letter-spacing: -.5px; line-height: 1.0; color: #f0f0f0; margin: 12px 0; }
.archive-title em { font-style: italic; color: #444; }
.archive-sub { font-family: 'Space Mono', monospace; font-size: 11px; color: #555; margin-top: 12px; }
.archive-layout { padding: 64px 0; }
.archive-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { font-family: 'Space Mono', monospace; font-size: 11px; padding: 8px 16px; border-radius: 100px; border: 1.5px solid #ebebeb; color: #666; text-decoration: none; transition: all .15s; }
.filter-btn:hover { border-color: #0a0a0a; color: #0a0a0a; }
.filter-btn--active { background: #0a0a0a; color: #f5f4f0; border-color: #0a0a0a; }
.filter-count { font-size: 9px; opacity: .6; margin-left: 4px; }

/* ═══════════════════════════════════════════
   POST CARD
═══════════════════════════════════════════ */
.post-card { background: #fff; border: 1.5px solid #ebebeb; border-radius: 20px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.07); }
.post-card-thumb { height: 200px; background: #f0f0f0 center/cover no-repeat; position: relative; display: block; }
.post-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; opacity: .2; }
.post-thumb-placeholder svg { width: 48px; height: 48px; }
.post-card-cat { position: absolute; top: 12px; left: 12px; font-family: 'Space Mono', monospace; font-size: 9px; padding: 4px 10px; border-radius: 100px; background: rgba(10,10,10,.8); color: #f0f0f0; letter-spacing: .08em; text-transform: uppercase; }
.post-card-body { padding: 20px 20px 16px; }
.post-card-meta { display: flex; gap: 12px; margin-bottom: 10px; font-family: 'Space Mono', monospace; font-size: 10px; color: #888; }
.post-card-title { font-size: 16px; font-weight: 700; letter-spacing: -.2px; line-height: 1.3; margin-bottom: 8px; }
.post-card-title a { text-decoration: none; color: #0a0a0a; }
.post-card-title a:hover { color: #444; }
.post-card-excerpt { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 12px; }
.post-card-link { font-family: 'Space Mono', monospace; font-size: 11px; color: #888; text-decoration: none; transition: color .15s; }
.post-card-link:hover { color: #0a0a0a; }

/* ═══════════════════════════════════════════
   RELATED SECTIONS (dark bg)
═══════════════════════════════════════════ */
.section-related-courses, .section-related-posts { background: #0a0a0a; padding: 80px 0; }
.section-related-courses .section-inner, .section-related-posts .section-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section-related-courses .course-card { background: #111; border-color: #1e1e1e; }
.section-related-courses .course-card-title a { color: #f0f0f0; }
.section-related-courses .course-card-footer { border-top-color: #1e1e1e; }
.section-related-courses .course-price { color: #f0f0f0; }
.section-related-courses .course-card:hover { border-color: #333; }
.section-related-courses .course-card-desc { color: #666; }
.section-related-posts .post-card { background: #111; border-color: #1e1e1e; }
.section-related-posts .post-card-title a { color: #f0f0f0; }

/* ═══════════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════════ */
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-family: 'Space Mono', monospace; font-size: 10px; color: #555; margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumbs a { color: #555; text-decoration: none; transition: color .15s; }
.breadcrumbs a:hover { color: #f0f0f0; }

/* ═══════════════════════════════════════════
   HERO STRONA GŁÓWNA
═══════════════════════════════════════════ */
.hero {
  padding: calc(72px + 80px) 48px 0;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end;
}
.hero-title { font-size: clamp(44px, 5.5vw, 80px); font-weight: 700; letter-spacing: -.8px; line-height: .98; margin-bottom: 24px; }
.hero-title em { font-style: italic; color: #aaa; }
.hero-subtitle { font-size: 16px; color: #555; line-height: 1.7; max-width: 440px; margin-bottom: 36px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-item { font-family: 'Space Mono', monospace; font-size: 10px; color: #888; letter-spacing: .06em; }
.hero-availability { display: inline-flex; align-items: center; gap: 8px; font-family: 'Space Mono', monospace; font-size: 11px; color: #888; margin-bottom: 20px; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e88; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-stat-card { border-radius: 28px; padding: 28px; display: flex; flex-direction: column; gap: 6px; }
.hero-stat-card--dark { background: #0a0a0a; }
.hero-stat-card--dark .hero-stat-val { color: #f0f0f0; }
.hero-stat-card--dark .hero-stat-label { color: #444; }
.hero-stat-card--light { background: #ebebeb; margin-top: 32px; }
.hero-stat-card--light .hero-stat-val { color: #0a0a0a; }
.hero-stat-card--light .hero-stat-label { color: #888; }
.hero-stat-val { font-size: 40px; font-weight: 700; letter-spacing: -.5px; line-height: 1; }
.hero-stat-label { font-family: 'Space Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

/* ═══════════════════════════════════════════
   URGENCY STRIP
═══════════════════════════════════════════ */
.urgency-strip { background: #0a0a0a; padding: 12px 48px; position: sticky; top: 72px; z-index: 99; border-bottom: 1px solid #1e1e1e; }
.urgency-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 20px; }
.urgency-text { font-family: 'Space Mono', monospace; font-size: 11px; color: #666; }
.urgency-text strong { color: #f0f0f0; }
.urgency-cta { font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 700; color: #c9a84c; text-decoration: none; transition: opacity .2s; }
.urgency-cta:hover { opacity: .75; }

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-wrap { overflow: hidden; border-top: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb; padding: 12px 0; margin-top: 64px; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-item { font-family: 'Space Mono', monospace; font-size: 11px; color: #888; padding: 0 12px; letter-spacing: .08em; text-transform: uppercase; }
.marquee-sep { font-size: 11px; color: #d4d4d4; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; padding-top: calc(72px + 48px); }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hero-stat-card--light { margin-top: 0; }
  .course-layout-inner { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
  .instructor-card { grid-template-columns: 1fr; }
  .newsletter-card { grid-template-columns: 1fr; gap: 32px; }
}
@media(max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; padding: 48px 20px 40px; }
  .footer-bottom { padding: 16px 20px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .courses-grid, .blog-grid, .features-grid { grid-template-columns: 1fr; }
  .section-inner { padding: 0 20px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .hero { padding: calc(72px + 32px) 20px 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .course-hero { padding: calc(72px + 40px) 20px 40px; }
  .archive-hero { padding: calc(72px + 40px) 20px 40px; }
  .urgency-strip { padding: 10px 20px; }
  .marquee-wrap { margin-top: 40px; }
  .newsletter-card { padding: 0 20px; }
  .instructor-card { gap: 32px; }
  .course-hero-specs { flex-direction: column; border: none; gap: 8px; }
  .course-hero-spec { border: 1px solid #1e1e1e; border-radius: 12px; padding: 12px 20px; text-align: left; display: flex; align-items: center; gap: 16px; }
}
