:root{
  --bg: #f5f9ff;
  --bg-soft: #ebf4ff;
  --surface: rgba(255,255,255,0.78);
  --surface-strong: rgba(255,255,255,0.92);
  --text: #0f172a;
  --muted: #51607a;
  --line: rgba(8, 130, 213, 0.12);
  --primary: #0082d5;
  --primary-dark: #006fb6;
  --primary-soft: rgba(0,130,213,0.12);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(circle at top left, rgba(0,130,213,0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.06), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8ff 100%);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
  position:relative;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

/* Floating background orbs */
.bg-orb{
  position:fixed;
  border-radius:999px;
  filter:blur(10px);
  pointer-events:none;
  z-index:-1;
  opacity:0.9;
  animation: float 10s ease-in-out infinite;
}

.orb-1{
  width:240px;
  height:240px;
  top:-40px;
  left:-70px;
  background:radial-gradient(circle, rgba(0,130,213,0.24), rgba(0,130,213,0));
}

.orb-2{
  width:180px;
  height:180px;
  top:18%;
  right:-50px;
  background:radial-gradient(circle, rgba(0,130,213,0.16), rgba(0,130,213,0));
  animation-delay:2s;
}

.orb-3{
  width:300px;
  height:300px;
  bottom:-120px;
  left:20%;
  background:radial-gradient(circle, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0));
  animation-delay:4s;
}

@keyframes float{
  0%,100%{transform:translateY(0) translateX(0) scale(1);}
  50%{transform:translateY(18px) translateX(10px) scale(1.04);}
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,0.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(8,130,213,0.08);
  box-shadow:0 8px 30px rgba(15,23,42,0.05);
}

.nav-container{
  max-width:1240px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.logo img{
  height:72px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 8px 18px rgba(0,130,213,0.18));
}

.nav-toggle{
  display:none;
}

.nav-toggle-label{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(180deg, #ffffff, #eef6ff);
  border:1px solid rgba(0,130,213,0.16);
  box-shadow:var(--shadow-soft);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex-direction:column;
  gap:5px;
}

.nav-toggle-label span{
  width:22px;
  height:2px;
  background:var(--primary);
  border-radius:999px;
  transition:0.3s ease;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:15px;
  font-weight:500;
}

.nav-menu a{
  position:relative;
  color:#22304a;
  opacity:0.92;
  transition:0.3s ease;
}

.nav-menu a:not(.join-btn)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--primary);
  border-radius:999px;
  transition:0.3s ease;
}

.nav-menu a:hover{
  color:var(--primary);
}

.nav-menu a:hover::after{
  width:100%;
}

.join-btn,
.primary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:linear-gradient(135deg, var(--primary), #33a4ef);
  color:white !important;
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 14px 30px rgba(0,130,213,0.26);
  border:1px solid rgba(255,255,255,0.45);
  transition:0.3s ease;
}

.join-btn:hover,
.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(0,130,213,0.32);
}

.secondary-btn,
.mini-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  font-weight:600;
  color:var(--primary);
  background:rgba(0,130,213,0.08);
  border:1px solid rgba(0,130,213,0.14);
  transition:0.3s ease;
}

.secondary-btn:hover,
.mini-link:hover{
  background:rgba(0,130,213,0.12);
  transform:translateY(-2px);
}

/* Main spacing for fixed navbar */
main{
  padding-top:110px;
}

/* SECTION BASE */
.section,
.hero{
  padding:90px 20px;
}

.section{
  position:relative;
}

.section-heading{
  max-width:860px;
  margin:0 auto 42px;
  text-align:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 14px;
  border-radius:999px;
  background:rgba(0,130,213,0.08);
  color:var(--primary-dark);
  border:1px solid rgba(0,130,213,0.12);
  font-size:13px;
  font-weight:700;
  letter-spacing:0.3px;
  text-transform:uppercase;
}

.section-heading h2{
  margin-top:14px;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.1;
  color:#0b1a33;
}

.section-heading p{
  margin-top:16px;
  font-size:17px;
  color:var(--muted);
}

/* HERO */
.hero{
  padding-top:48px;
}

.hero-container{
  max-width:1240px;
  margin:auto;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:34px;
  align-items:stretch;
}

.hero-copy,
.hero-panel{
  position:relative;
}

.hero-copy{
  padding:34px 0;
}

.hero-badge{
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(0,130,213,0.08);
  color:var(--primary-dark);
  border:1px solid rgba(0,130,213,0.12);
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
}

.hero h1{
  font-size:clamp(40px, 6vw, 68px);
  line-height:1.02;
  letter-spacing:-0.04em;
  color:#081325;
  max-width:12ch;
}

.hero-text{
  margin-top:20px;
  max-width:62ch;
  font-size:18px;
  color:var(--muted);
}

.hero-actions{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.hero-stats{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.stat-card{
  padding:18px 18px 20px;
  background:var(--surface-strong);
  border:1px solid rgba(8,130,213,0.10);
  border-radius:20px;
  box-shadow:var(--shadow-soft);
  transition:0.3s ease;
}

.stat-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(15,23,42,0.10);
}

.stat-number{
  display:block;
  font-size:28px;
  font-weight:800;
  color:var(--primary);
  line-height:1;
}

.stat-label{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
}

/* HERO PANEL */
.hero-panel{
  display:grid;
  gap:16px;
}

.panel-card,
.glass-card{
  background:var(--surface);
  backdrop-filter:blur(14px);
  border:1px solid rgba(8,130,213,0.12);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}

.panel-card{
  padding:28px;
  overflow:hidden;
  position:relative;
}

.panel-card.accent{
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.24), transparent 30%),
    linear-gradient(135deg, var(--primary), #3ca9f0);
  color:white;
  box-shadow:0 24px 60px rgba(0,130,213,0.26);
}

.panel-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:13px;
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:0.5px;
  opacity:0.9;
}

.panel-card h2{
  font-size:clamp(24px, 2.6vw, 34px);
  line-height:1.15;
  margin-bottom:14px;
}

.panel-card p{
  font-size:16px;
  opacity:0.95;
}

.panel-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.mini-card{
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(8,130,213,0.12);
  box-shadow:var(--shadow-soft);
  transition:0.3s ease;
}

.mini-card:hover{
  transform:translateY(-4px);
  border-color:rgba(0,130,213,0.26);
}

.mini-card h3{
  color:#0b1a33;
  font-size:18px;
  margin-bottom:8px;
}

.mini-card p{
  color:var(--muted);
  font-size:14px;
}

/* ABOUT */
.about-layout{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:18px;
}

.about-main{
  padding:32px;
}

.about-main h3{
  font-size:28px;
  margin-bottom:14px;
  color:#0b1a33;
}

.about-main p{
  margin-bottom:14px;
  color:var(--muted);
  font-size:16px;
}

.about-side{
  display:grid;
  gap:16px;
}

.feature-card{
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(8,130,213,0.12);
  box-shadow:var(--shadow-soft);
  transition:0.3s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
}

.feature-card h4{
  font-size:18px;
  color:var(--primary-dark);
  margin-bottom:8px;
}

.feature-card p{
  color:var(--muted);
  font-size:14px;
}

/* SECTIONS GRID */
.sections-grid{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.section-card{
  padding:28px;
  transition:0.32s ease;
  position:relative;
  overflow:hidden;
}

.section-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(0,130,213,0.08), transparent 60%);
  opacity:0;
  transition:0.3s ease;
}

.section-card:hover{
  transform:translateY(-8px);
  border-color:rgba(0,130,213,0.26);
  box-shadow:0 24px 50px rgba(15,23,42,0.12);
}

.section-card:hover::before{
  opacity:1;
}

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.card-index{
  font-size:14px;
  font-weight:800;
  color:var(--primary);
  letter-spacing:0.12em;
}

.card-tag{
  padding:7px 12px;
  border-radius:999px;
  background:rgba(0,130,213,0.08);
  border:1px solid rgba(0,130,213,0.12);
  font-size:12px;
  color:var(--primary-dark);
  font-weight:700;
  text-transform:uppercase;
}

.section-card h3{
  font-size:24px;
  margin-bottom:14px;
  color:#081325;
}

.section-card p{
  color:var(--muted);
  margin-bottom:18px;
}

.section-card ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.section-card li{
  position:relative;
  padding-left:22px;
  color:#334155;
  font-size:14px;
}

.section-card li::before{
  content:"";
  position:absolute;
  top:11px;
  left:0;
  width:9px;
  height:9px;
  border-radius:999px;
  background:var(--primary);
  box-shadow:0 0 0 5px rgba(0,130,213,0.10);
}

/* PROCESS */
.process-grid{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.process-step{
  padding:28px;
  transition:0.3s ease;
}

.process-step:hover{
  transform:translateY(-6px);
}

.process-step span{
  display:inline-flex;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg, var(--primary), #3ca9f0);
  color:white;
  font-weight:800;
  box-shadow:0 10px 22px rgba(0,130,213,0.25);
}

.process-step h3{
  margin-top:18px;
  font-size:20px;
  margin-bottom:10px;
}

.process-step p{
  color:var(--muted);
}

/* CTA */
.cta-section{
  padding-top:70px;
}

.cta-box{
  max-width:1240px;
  margin:0 auto;
  padding:34px;
  border-radius:30px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.20), transparent 30%),
    linear-gradient(135deg, var(--primary), #47b0f4);
  color:white;
  box-shadow:0 26px 60px rgba(0,130,213,0.28);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.cta-box h2{
  font-size:clamp(24px, 3vw, 36px);
  line-height:1.15;
  margin-top:10px;
  max-width:16ch;
}

/* FOOTER */
.footer {
  margin-top: 40px; /* zmniejszony margines jeśli brak treści */
  padding: 20px 20px 20px; /* zmniejszone paddingi */
  border-top: 1px solid rgba(8,130,213,0.08);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px; /* mniejszy gap */
  flex-wrap: wrap;
}

/* Ukryj sekcje, jeśli są puste */
.footer-branding:empty,
.footer-links-section:empty,
.footer-contact-section:empty {
  display: none;
}

.footer-branding,
.footer-links-section,
.footer-contact-section {
  flex: 1 1 250px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 700;
  color: #081325;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4; /* mniejszy line-height */
}

.footer-links-section h4,
.footer-contact-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #081325;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px; /* mniejszy gap */
}

.footer-links a,
.footer-contact a {
  color: #22304a;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px; /* mniejszy gap */
}

.footer-bottom {
  margin-top: 20px; /* mniejszy margines */
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid rgba(8,130,213,0.08);
  padding-top: 10px; /* mniejsze paddingi */
}
/* POLITYKA PRYWATNOŚCI STYL */
.privacy-container{
  max-width:900px;
  margin:40px auto;
  padding:24px 20px;
  background:var(--surface-strong);
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow-soft);
  line-height:1.8;
  color:var(--text);
}

.privacy-container h1,
.privacy-container h2,
.privacy-container h3{
  color:#081325;
  margin-bottom:20px;
}

.privacy-container h1{
  text-align:center;
  font-size:clamp(32px, 5vw, 48px);
}

.privacy-container h2{
  font-size:clamp(24px, 3vw, 36px);
  margin-top:30px;
}

.privacy-container h3{
  font-size:20px;
  margin-top:20px;
}

.privacy-container p{
  margin-bottom:14px;
  font-size:16px;
  color:var(--muted);
}

.privacy-container ul{
  margin-left:20px;
  margin-bottom:16px;
  list-style-type: disc;
}

.privacy-container li{
  margin-bottom:8px;
  color:var(--text);
}

.privacy-container a{
  color:var(--primary);
  text-decoration:underline;
  transition:0.3s ease;
}

.privacy-container a:hover{
  color:var(--primary-dark);
}

@media (max-width:768px){
  .privacy-container{
    padding:20px 16px;
  }
  .privacy-container h1{
    font-size:clamp(28px,6vw,40px);
  }
  .privacy-container h2{
    font-size:clamp(20px,4vw,28px);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; /* zmniejszony gap */
  }

  .footer-contact {
    text-align: left;
  }
}

/* HOVER EFFECTS */
.glass-card{
  transition:0.3s ease;
}

.glass-card:hover{
  transform:translateY(-5px);
  box-shadow:0 26px 60px rgba(15,23,42,0.12);
}

/* MOBILE */
@media (max-width: 1024px){
  .hero-container,
  .about-layout,
  .coordinator-card{
    grid-template-columns:1fr;
  }

  .sections-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero h1{
    max-width:18ch;
  }

  .hero-stats{
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px){
  .nav-toggle-label{
    display:flex;
  }

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    display:grid;
    gap:12px;
    padding:18px 20px 22px;
    background:rgba(255,255,255,0.96);
    border-bottom:1px solid rgba(8,130,213,0.10);
    box-shadow:0 18px 40px rgba(15,23,42,0.08);
    transform:translateY(-16px);
    opacity:0;
    pointer-events:none;
    transition:0.28s ease;
  }

  .nav-menu a{
    padding:14px 14px;
    border-radius:14px;
    background:rgba(0,130,213,0.04);
  }

  .nav-menu a:not(.join-btn)::after{
    display:none;
  }

  .nav-toggle:checked ~ .nav-menu{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2){
    opacity:0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .logo img{
    height:62px;
  }

  main{
    padding-top:98px;
  }

  .section,
  .hero{
    padding:72px 20px;
  }

  .hero h1{
    font-size:clamp(34px, 8vw, 52px);
  }

  .hero-text{
    font-size:16px;
  }

  .panel-grid{
    grid-template-columns:1fr;
  }

  .coordinator-header{
    flex-direction:column;
  }

  .footer-container{
    flex-direction:column;
  }

  .footer-contact{
    text-align:left;
  }
}

@media (max-width: 560px){
  .nav-container{
    padding:12px 16px;
  }

  .hero-copy{
    padding:18px 0 0;
  }

  .panel-card,
  .about-main,
  .section-card,
  .process-step,
  .coordinator-info,
  .cta-box{
    padding:22px;
  }

  .hero-badge,
  .eyebrow{
    font-size:12px;
  }

  .primary-btn,
  .secondary-btn,
  .join-btn{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-stats{
    gap:12px;
  }
}


