@charset "utf-8";
/* CSS Document */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 body {
     font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
     background: #000;
     color: #e0a3ff;
     overflow-x: hidden;
     min-height: 100vh;
     font-weight: 400;
     line-height: 1.6;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}
/* Enhanced background colors - Purple/Pink/Green palette */
 .neural-background {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -2;
background:
    radial-gradient(circle at 15% 85%, #003de6 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, #0036cc 0%, transparent 50%),
    radial-gradient(circle at 45% 60%, rgba(40, 70, 150, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 70% 40%, rgba(50, 90, 180, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, #0a1738 0%, #142c5a 50%, #071227 100%);
     animation: backgroundPulse 14s ease-in-out infinite;
}

/* Floating geometric shapes */
 .geometric-shapes {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     overflow: hidden;
}
 .shape {
     position: absolute;
     border: 1px solid rgba(0, 255, 255, 0.3);
     animation: floatShape 20s linear infinite;
}
 .shape:nth-child(1) {
     width: 100px;
     height: 100px;
     left: 10%;
     animation-delay: 0s;
     border-color: rgba(255, 105, 180, 0.4);
}
 .shape:nth-child(2) {
     width: 60px;
     height: 60px;
     left: 70%;
     animation-delay: -5s;
     border-radius: 50%;
     border-color: rgba(147, 112, 219, 0.4);
}
 .shape:nth-child(3) {
     width: 80px;
     height: 80px;
     left: 30%;
     animation-delay: -10s;
     transform: rotate(45deg);
     border-color: rgba(224, 163, 255, 0.4);
}
 .shape:nth-child(4) {
     width: 120px;
     height: 120px;
     left: 50%;
     animation-delay: -15s;
     clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
     background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), transparent);
}
 @keyframes floatShape {
     from {
         transform: translateY(100vh) rotate(0deg);
         opacity: 0;
    }
     10%, 90% {
         opacity: 1;
    }
     to {
         transform: translateY(-100px) rotate(360deg);
         opacity: 0;
    }
}
/* Neural network lines */
 .neural-lines {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
}
 .neural-line {
     position: absolute;
     background: linear-gradient(90deg, transparent, #00ffff, transparent);
     height: 1px;
     animation: neuralPulse 3s ease-in-out infinite;
}
 .neural-line:nth-child(1) {
     top: 20%;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #e0a3ff, transparent);
     animation-delay: 0s;
}
 .neural-line:nth-child(2) {
     top: 60%;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #ff69b4, transparent);
     animation-delay: -1s;
}
 .neural-line:nth-child(3) {
     top: 40%;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #9370db, transparent);
     animation-delay: -2s;
}
 @keyframes neuralPulse {
     0%, 100% {
         opacity: 0.2;
         transform: scaleX(0.5);
    }
     50% {
         opacity: 1;
         transform: scaleX(1);
    }
}
/* Glassmorphism styles */
 .glass {
     background:     radial-gradient(circle at 15% 85%, #0030b3 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, #0036cc 0%, transparent 50%),
    radial-gradient(circle at 45% 60%, rgba(40, 70, 150, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 70% 40%, rgba(50, 90, 180, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, #0a1738 0%, #142c5a 50%, #071227 100%);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
 .glass-strong {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 25px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
/* Enhanced Header */
 header {
     position: relative;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 100;
     width: 96%;
     max-width: 1200px;
     padding: 18px 35px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     background: rgba(224, 163, 255, 0.08);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(224, 163, 255, 0.15);
     border-radius: 25px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
 header.scrolled {
     backdrop-filter: blur(30px);
     border-color: rgba(224, 163, 255, 0.2);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(224, 163, 255, 0.1);
}
 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .logo {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 28px;
     font-weight: bold;
     background: linear-gradient(45deg, #e0a3ff, #ff69b4);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     text-decoration: none;
     animation: logoGlow 3s ease-in-out infinite;
     transition: all 0.3s ease;
}
 .logo:hover {
     transform: scale(1.05);
}
 .logo-icon {
     width: 40px;
     height: 40px;
     filter: drop-shadow(0 0 10px #e0a3ff);
}
 @keyframes logoGlow {
     0%, 100% {
         filter: drop-shadow(0 0 10px #e0a3ff);
    }
     50% {
         filter: drop-shadow(0 0 20px #ff69b4);
    }
}
 .nav-links {
     display: flex;
     list-style: none;
     gap: 12px;
}
 .nav-links a {
     color: #fff;
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     padding: 12px 15px;
     border-radius: 15px;
     font-size: 0.95rem;
     font-weight: 500;
     letter-spacing: 0.02em;
}
 .nav-links a:hover {
     color: #e0a3ff;
     background: linear-gradient(135deg, rgba(224, 163, 255, 0.15), rgba(255, 105, 180, 0.1));
     box-shadow: 0 0 20px rgba(224, 163, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 15px rgba(224, 163, 255, 0.2);
     text-shadow: 0 0 10px rgba(224, 163, 255, 0.8);
     transform: translateY(-1px);
}
 .nav-links a.active::after {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(45deg, #e0a3ff, #ff69b4, #9370db, #e0a3ff);
     background-size: 400% 400%;
     border-radius: 17px;
     z-index: -2;
     animation: borderGlow 3s ease infinite;
}
.nav-links a.external-link::after {
    font-size: 0.8em;
    vertical-align: super;
}
 @keyframes borderGlow {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
/* Mobile Menu */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 8px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
}
 .mobile-menu-toggle:hover {
     background: rgba(224, 163, 255, 0.1);
     box-shadow: 0 0 15px rgba(224, 163, 255, 0.3);
}
/* Mobile menu active state */
.mobile-nav a.active {
    background: linear-gradient(135deg, rgba(224, 163, 255, 0.2), rgba(255, 105, 180, 0.15));
    color: #e0a3ff;
    border: 1px solid rgba(224, 163, 255, 0.4);
    box-shadow: 
        0 0 25px rgba(224, 163, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(224, 163, 255, 0.6);
}
 .hamburger-line {
     width: 25px;
     height: 3px;
     background: linear-gradient(45deg, #e0a3ff, #ff69b4);
     margin: 3px 0;
     border-radius: 2px;
     transition: all 0.3s ease;
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
     transform: rotate(45deg) translate(9px, 9px);
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
     opacity: 0;
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -6px);
}
 .mobile-nav {
     position: fixed;
     top: 90px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 400px;
     background: rgba(0, 0, 0, 0.95);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     padding: 30px;
     display: none;
     flex-direction: column;
     gap: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
 .mobile-nav.active {
     display: flex;
     animation: slideDown 0.3s ease-out;
}
 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateX(-50%) translateY(-20px);
    }
     to {
         opacity: 1;
         transform: translateX(-50%) translateY(0);
    }
}
 .mobile-nav a {
     color: #ffffff;
     text-decoration: none;
     padding: 15px 20px;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
     font-size: 1.1rem;
     transition: all 0.3s ease;
}
 .mobile-nav a:hover {
     background: rgba(224, 163, 255, 0.1);
     color: #e0a3ff;
     box-shadow: 0 0 20px rgba(224, 163, 255, 0.3);
     transform: translateY(-2px);
}
/* Section 1: Modern Redesigned Hero */
 .hero {
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
}
 .hero::before {
     content: '';
     position: absolute;
     left: 50%;
     width: 60%;
     height: 60%;
     background: radial-gradient(circle, rgba(224, 163, 255, 0.04) 0%, transparent 70%);
     transform: translate(-50%, -50%);
     z-index: -1;
}

 .hero-content {
     max-width: 1300px;
     padding: 40px 40px 10px 40px;
	 margin-top: 20px;
     position: relative;
     background: none;
     backdrop-filter: none;
     border: none;
     box-shadow: none;
     border-radius: 0;
}

 .hero-subtitle {
     font-size: 0.9rem;
     color: #e0a3ff;
     margin-bottom: 25px;
     opacity: 0;
     text-transform: uppercase;
     letter-spacing: 0.4em;
     position: relative;
     display: inline-block;
     font-weight: 300;
}
 .hero-subtitle::before, .hero-subtitle::after {
     content: '';
     position: absolute;
     top: 50%;
     width: 40px;
     height: 1px;
     background: linear-gradient(90deg, transparent, #e0a3ff, transparent);
}
 .hero-subtitle::before {
     left: -60px;
}
 .hero-subtitle::after {
     right: -60px;
}
 @keyframes linePulse {
     0%, 100% {
         opacity: 0.4;
         transform: scaleX(0.8);
    }
     50% {
         opacity: 1;
         transform: scaleX(1.2);
    }
}

 .hero h1 {
     font-size: clamp(2.2rem, 6vw, 3rem);
     margin-bottom: 5px;
     background: linear-gradient(135deg, #e0a3ff 0%, #ff69b4 30%, #9370db 60%, #e0a3ff 100%);
     background-size: 300% 300%;
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     animation: modernGradient 8s ease infinite;
     line-height: 1.1;
     letter-spacing: -0.02em;
     font-weight: 800;
     text-shadow: none;
     opacity: 0;
     animation: slideInFromRight 0s ease 0s forwards, modernGradient 0s ease 0s infinite;
}
 @keyframes modernGradient {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
 @keyframes slideInFromRight {
     from {
         opacity: 0;
         transform: translateX(40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .hero-description {
     max-width: 700px;
     margin: 40px auto 50px;
     opacity: 0;
     animation: fadeInScale 1.2s ease 0.9s forwards;
     text-align: center;
}
 .hero-description p {
     font-size: 1.2rem;
     color: #d1d1d1;
     line-height: 1.7;
     margin-bottom: 0;
     font-weight: 300;
}
 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.95);
    }
     to {
         opacity: 1;
         transform: scale(1);
    }
}
 .hero-stats {
     display: grid;
	 width: 100%;
     grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
     gap: 40px;
     margin: 60px 0px 50px 0px;
     opacity: 0;
     animation: slideUpStagger 0s ease 0s forwards;
	 padding-top: 40px;
}
 .hero-stat {
     text-align: center;
     position: relative;
     padding: 20px;
     background: linear-gradient(135deg, rgba(224, 163, 255, 0.06), rgba(255, 105, 180, 0.04));
     border: 3px solid rgba(224, 163, 255, 0.15);
     border-radius: 12px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     backdrop-filter: blur(10px);
}
 .hero-stat:hover {
     transform: translateY(-8px) scale(1.05);
     border-color: rgba(255, 105, 180, 0.3);
     box-shadow: 0 20px 40px rgba(224, 163, 255, 0.1);
}
 .hero-stat-number {
     font-size: 1.8rem;
     font-weight: 700;
     color: #e0a3ff;
     display: block;
     text-shadow: 0 0 15px rgba(224, 163, 255, 0.4);
     margin-bottom: 8px;
}
 .hero-stat-label {
     font-size: 0.8rem;
     color: #ffb84d;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     font-weight: 900;
}
 @keyframes slideUpStagger {
     from {
         opacity: 0;
         transform: translateY(30px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .cta-buttons {
     display: flex;
     gap: 10px;
     justify-content: center;
     flex-wrap: wrap;
     opacity: 0;
     animation: buttonSlideUp 0s ease 0s forwards;
}
 @keyframes buttonSlideUp {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .cta-button {
     display: inline-block;
     padding: 16px 30px 16px 30px; 
     background: linear-gradient(135deg, #e0a3ff, #ff69b4);
     color: #000;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.95rem;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.03em;
     box-shadow: 0 4px 15px rgba(224, 163, 255, 0.2);
}
 .cta-button.secondary {
     background: transparent;
     border: 2px solid #ff66cc;
     color: #ff66cc;
     box-shadow: 0 4px 15px rgba(224, 163, 255, 0.1);
}
 .cta-button:hover {
     transform: translateY(-4px) scale(1.02);
     box-shadow: 0 12px 30px rgba(224, 163, 255, 0.3);
}
 .cta-button.secondary:hover {
     background: rgba(224, 163, 255, 0.08);
     box-shadow: 0 12px 30px rgba(224, 163, 255, 0.2);
}
.cta-button.full-width {
    width: 100%;
}

.cta-button:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}
#zamow {
color: #0030b3;	
padding: 13px 30px 13px 30px; 
border: 3px solid #0030b3;
font-weight: 700;
}
/* Section 2: Diagonal Features */
 .features {
     padding: 70px 0 50px 0;
     position: relative;
     overflow: hidden;
}
 .features::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
     animation: rotate 20s linear infinite;
     z-index: -1;
}
 @keyframes rotate {
     from {
         transform: rotate(0deg);
    }
     to {
         transform: rotate(360deg);
    }
}
 .section-title {
     text-align: center;
     font-size: clamp(2.5rem, 6vw, 4rem);
     margin-bottom: 80px;
     color: #00ffff;
     position: relative;
}
 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, #00ffff, #ff0080);
     border-radius: 2px;
}
 .features-container {
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
}
 .diagonal-grid {
     display: flex;
     flex-direction: column;
     gap: 60px;
}
 .feature-row {
     display: flex;
     align-items: center;
     gap: 50px;
     position: relative;
}
 .feature-row:nth-child(even) {
     flex-direction: row-reverse;
}
 .feature-content {
     flex: 1;
     padding: 20px;
     transform: skew(-5deg);
     transition: all 0.4s ease;
}
 .feature-content:hover {
     transform: skew(-5deg) translateY(-10px);
     box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
}
 .feature-visual {
     flex: 1;
     height: 300px;
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     transition: all 0.4s ease;
}
 .feature-visual:hover {
     transform: scale(1.05);
     box-shadow: 0 20px 40px rgba(224, 163, 255, 0.3);
}
 .feature-visual::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(224, 163, 255, 0.1), rgba(255, 105, 180, 0.1));
     z-index: 1;

     transition: all 0.4s ease;
}
 .feature-visual:hover::before {
     background: linear-gradient(45deg, rgba(224, 163, 255, 0.2), rgba(255, 105, 180, 0.2));
}
 .feature-row:nth-child(1) .feature-visual {
     background-image: url('../images/raport-gsc.jpg');
}
 .feature-row:nth-child(2) .feature-visual {
     background-image: url('../images/publikacje-sponsorowane.jpg');
}
 .feature-row:nth-child(3) .feature-visual {
     background-image: url('../images/portale-tematyczne.jpg');
}
 .feature-icon {
     font-size: 4rem;
     background: linear-gradient(45deg, #ff0080, #8000ff);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
	 float: right;
}
 .feature-content h3 {
     font-size: 2.2rem;
     margin-bottom: 20px;
     color: #ffffff;
}
 .feature-content p {
     font-size: 19px;
     color: #fff;
}
/* Section 3: Enhanced Hexagonal Showcase */
 .showcase {
     padding: 60px 0;
     position: relative;
}
 .hexagon-container {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 20px;
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 0px;
}
 .hexagon {
     width: 30%;
     height: auto;
     position: relative;
     margin: 0px;
     transition: all 0.4s ease;
}
 .hexagon:hover {
     transform: scale(1.05);
}
 .hexagon-inner {
     width: 100%;
     height: 100%;
     position: relative;
     border-radius: 25px;
     padding: 20px 10px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
     transition: all 0.4s ease;
}
 .hexagon:hover .hexagon-inner {
     transform: rotate(0deg);
     border-radius: 15px;
}
 .hexagon:nth-child(odd) .hexagon-inner {
     background: linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(255, 0, 128, 0.12));
     border: 3px solid rgba(0, 255, 255, 0.3);
}
 .hexagon:nth-child(even) .hexagon-inner {
     background: linear-gradient(135deg, rgba(255, 0, 128, 0.12), rgba(128, 0, 255, 0.12));
     border: 3px solid rgba(255, 0, 128, 0.3);
}
 .hexagon-icon {
     font-size: 2.8rem;
     margin-bottom: 10px;
     filter: drop-shadow(0 0 10px currentColor);
     transition: all 0.4s ease;
}
 .hexagon:hover .hexagon-icon {
     transform: rotate(0deg);
}
 .hexagon h4 {
     font-size: 1.3rem;
     color: #ffffff;
     margin-bottom: 15px;
     font-weight: bold;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
     transition: all 0.4s ease;
}
 .hexagon:hover h4 {
     transform: rotate(0deg);
}
 .hexagon p {
     font-size: 0.95rem;
     color: #e0e0e0;
     line-height: 1.5;
     word-wrap: break-word;
     hyphens: auto;
     transition: all 0.4s ease;
}
 .hexagon:hover p {
     transform: rotate(0deg);
}
/* Section 4: Enhanced Timeline */
 .timeline {
     padding: 100px 0;
     position: relative;
}
 .timeline-container {
     max-width: 1100px;
     margin: 0 auto;
     position: relative;
     padding: 0 20px;
}
 .timeline-line {
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 4px;
     background: linear-gradient(180deg, #e0a3ff, #ff69b4, #9370db);
     transform: translateX(-50%);
     border-radius: 2px;
     box-shadow: 0 0 20px rgba(224, 163, 255, 0.3);
}
 .timeline-item {
     display: flex;
     justify-content: flex-end;
     padding-right: 60px;
     position: relative;
     margin-bottom: 60px;
}
 .timeline-item:nth-child(even) {
     justify-content: flex-start;
     padding-left: 60px;
     padding-right: 0;
}
 .timeline-content {
     max-width: 450px;
     padding: 50px 40px;
     position: relative;
     transform: perspective(1000px) rotateY(-5deg);
     transition: all 0.4s ease;
     background: rgba(224, 163, 255, 0.08);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(224, 163, 255, 0.15);
     border-radius: 25px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
 .timeline-item:nth-child(even) .timeline-content {
     transform: perspective(1000px) rotateY(5deg);
}
 .timeline-content:hover {
     transform: perspective(1000px) rotateY(0deg) translateZ(20px);
     box-shadow: 0 25px 60px rgba(224, 163, 255, 0.2), 0 0 0 1px rgba(224, 163, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
     border-color: rgba(224, 163, 255, 0.3);
}
 .timeline-dot {
     position: absolute;
     left: 50%;
     top: 60px;
     transform: translateX(-50%);
     width: 24px;
     height: 24px;
     background: linear-gradient(135deg, #ff69b4, #e0a3ff);
     border-radius: 50%;
     box-shadow: 0 0 25px rgba(255, 105, 180, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
     z-index: 1;
     border: 3px solid rgba(255, 255, 255, 0.2);
}
 .timeline-year {
     font-size: 1.8rem;
     color: #e0a3ff;
     margin-bottom: 20px;
     font-weight: bold;
     text-shadow: 0 0 15px rgba(224, 163, 255, 0.4);
}
 .timeline-content h4 {
     font-size: 1.5rem;
     color: #ffffff;
     margin-bottom: 20px;
     font-weight: 600;
}
 .timeline-content p {
     color: #d1d1d1;
     line-height: 1.7;
     font-size: 1rem;
}
/* Section 5: Contact */
 .contact {
     padding: 150px 0;
     position: relative;
}
 .contact-container {
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
}
 .contact-info {
     padding: 20px 20px;
     position: relative;
}
 .contact-form {
     padding: 20px 20px;
}
 .form-group {
     margin-bottom: 30px;
     position: relative;
}
 .form-group:not(.no-input-styles) input, .form-group textarea {
     width: 100%;
     padding: 15px 20px;
     background: #fff;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     color: #000;
     font-family: inherit;
     font-size: 1rem;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
}
 .form-group:not(.no-input-styles) input:focus, .form-group textarea:focus {
     outline: none;
     border-color: #00ffff;
     box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
     background: #fff;
}
 .form-group:not(.no-input-styles) input::placeholder, .form-group textarea::placeholder {
     color: #888;
}
 .submit-btn {
     width: 100%;
     padding: 18px;
     background: #ff66cc;
     border: none;
     border-radius: 10px;
     color: #000;
     font-weight: bold;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
}
 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}
 .contact-info h3 {
     font-size: 2.5rem;
     color: #ffb84d;
     margin-bottom: 30px;
}
 .contact-info p {
     font-size: 1.2rem;
     color: #fff;
     line-height: 1.7;
     margin-bottom: 30px;
}
 .social-links {
     display: flex;
     gap: 20px;
     margin-top: 40px;
}
 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     border-radius: 15px;
     color: #00ffff;
     text-decoration: none;
     font-size: 1.5rem;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
}
 .social-links a::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
     transition: left 0.5s ease;
}
 .social-links a:hover::before {
     left: 100%;
}
 .social-links a:hover {
     transform: translateY(-5px) scale(1.1);
     box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}
/* Footer */
 footer {
     text-align: center;
     padding: 30px 20px 35px;
     border-top: 1px solid rgba(224, 163, 255, 0.2);
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(20px);
}
 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
}
 .footer-links {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-bottom: 15px;
     flex-wrap: wrap;
}
 .footer-links a {
     color: #cccccc;
     text-decoration: none;
     font-size: 1rem;
     transition: all 0.3s ease;
     position: relative;
     padding: 8px 0;
}
 .footer-links a:hover {
     color: #e0a3ff;
     text-shadow: 0 0 10px rgba(224, 163, 255, 0.5);
}
 .footer-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 1px;
     background: linear-gradient(90deg, #e0a3ff, #ff69b4);
     transition: width 0.3s ease;
}
 .footer-links a:hover::after {
     width: 100%;
}
 .footer-copyright {
     color: #888;
     font-size: 0.9rem;
     margin-bottom: 15px;
}
 .footer-design {
     color: #666;
     font-size: 0.85rem;
     margin-top: 20px;
}
 .footer-design a {
     color: #e0a3ff;
     text-decoration: none;
     transition: all 0.3s ease;
}
 .footer-design a:hover {
     color: #ff69b4;
     text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
}
/* Mobile Responsiveness */
 @media (max-width: 1024px) {
	 .feature-row {
        flex-direction: column;
        gap: 40px;
		min-height: 720px;
    }

    .feature-row:nth-child(even) {
        flex-direction: column;
    }
	.feature-content {
    	flex: 0;
	}
    .feature-visual {
        height: 250px; /* Adjust the height for mobile view */
        width: 100%;
    }
     .contact-container {
         grid-template-columns: 1fr;
         gap: 40px;
    }

     .timeline-line {
         left: 30px;
    }
     .timeline-item, .timeline-item:nth-child(even) {
         justify-content: flex-start;
         padding-left: 80px;
         padding-right: 0;
    }
     .timeline-dot {
         left: 30px;
    }
     .timeline-content {
         max-width: 100%;
    }
}

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }	
}
 @media (max-width: 768px) {
     .hero-content {
         padding: 40px 20px;
    }
     .hero h1 {
         font-size: clamp(1.8rem, 8vw, 3rem);
    }
     .hero-description p {
         font-size: 1.1rem;
    }
     .hero-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
         margin: 40px auto 35px;
    }
     .hero-stat {
         padding: 15px;
    }
     .hero-stat-number {
         font-size: 1.5rem;
    }
     .hero-subtitle::before, .hero-subtitle::after {
         width: 25px;
    }
     .hero-subtitle::before {
         left: -35px;
    }
     .hero-subtitle::after {
         right: -35px;
    }
     .cta-buttons {
         flex-direction: column;
         align-items: center;
         gap: 15px;
    }
     .cta-button {
         width: 100%;
         max-width: 280px;
         text-align: center;
    }
    /* Update the existing hexagon styles for mobile */
    .hexagon {
        width: 100%;  /* Increased from 180px */
        height: auto; /* Increased from 200px */
        margin: 20px; /* Center and add more spacing */
    }
    
    .hexagon-inner {
        padding: 10px 6px; /* More padding for larger content area */
    }
    
    .hexagon-icon {
        font-size: 3.5rem; /* Larger icon */
        margin-bottom: 25px;
    }
    
    .hexagon h4 {
        font-size: 1.6rem; /* Larger heading */
        margin-bottom: 20px;
    }
    
    .hexagon p {
        font-size: 1.1rem; /* Larger text */
        max-width: 100%; /* More width for text */
        line-height: 1.6;
    }
    
    .hexagon-container {
        gap: 20px; /* Reduce gap since boxes are larger */
    }
     .section-title {
         margin-bottom: 60px;
    }
     .features, .showcase, .timeline, .contact {
         padding: 40px 0;
    }
     .timeline {
         padding: 60px 0;
    }
     .footer-links {
         gap: 20px;
         margin-bottom: 25px;
    }
     .footer-links a {
         font-size: 0.85rem;
    }
}
#logowanie {
color: #ffb84d;
font-weight: 900;
	border: 2px solid #ffb84d;
	border-radius: 10px;
	padding: 10px 15px 10px 15px;	
}
#rejestracja {
color: #ff66cc;	
font-weight: 900;
	border: 2px solid #ff66cc;
	border-radius: 10px;
	padding: 10px 15px 10px 15px;	
}
h2 {
font-size: 20px;
color: #fff;	
}
#glowna {
	background: #e6f2ff;
}
#glowna2 {
	background: #fff;
	padding: 50px 0 50px 0;
}
@media (min-width: 1000px) {
#prawa2 {
float: right;
}
.headings-inline {
  display: flex;
  align-items: center; 
  gap: 10px;
  color: #000;
  font-weight: 700;
  font-size: 19px;
}
.headings-inline h1 {
  font-size: 2.5rem;
  color: #0030b3;
}
.headings-inline h2 {
  font-size: 1.5rem;
  color: #0030b3;
}
.divider {
  flex: 1;
  height: 11px;
  background-color: #212631;
}
.section-grey .divider {
  background-color: #ccc;
}
#stopka {
float: left;
}
#onas {
max-width: 100%;
margin: 0px 15px 15px 0px;
border-radius: 10px;
float: left;
}
#onas2 {
max-width: 100%;
margin: 15px 0px 15px 5px;
border-radius: 10px;
float: right;
}
#prawa {
float: right;
width: 60%
}	
#lewa {
float: left;
width: 40%
}

#zamawianie {
max-width: 1300px;
grid-template-columns: 1fr 3fr;
}
#wybor {
max-width: 1100px;
grid-template-columns: 1fr 1fr 0.5fr 0.5fr;
margin-bottom: 20px;
gap: 8px;
}
#opcje {
grid-template-columns: 1.7fr 1fr;
margin-bottom: 20px;
gap: 0px;
}
}

#ramka {
	border: 3px solid #0030b3;
	border-radius: 10px;
	padding: 0px 15px 0px 15px;
	background-color: #fff;
}
#ramka2 {
	border: 2px solid #0030b3;
	border-radius: 10px;
	padding: 0px 10px 0px 10px;
	background-color: #fff;	
}
@media (max-width: 999px) {
#nazwa {
font-size: 20px !important;
font-weight: 700;
color: #0030b3;
}
#prawa2 {
font-size: 15px !important;
}
#malutki {
font-size: 15px !important;
}		
#wybor {
grid-template-columns: 1fr;
margin-bottom: 20px;
gap: 10px;
}
#opcje {
grid-template-columns: 1fr;
margin-bottom: 20px;
gap: 8px;
}
#lewy{
margin-left: 5px !important;	
}
.headings-inline {
  color: #000;
    font-weight: 700;
  font-size: 19px;
}
.headings-inline h1 {       
  font-size: 3.5rem;
  color: #0030b3;
  text-align:center;
}
.headings-inline h2 {          
  font-size: 1.5rem;
  color: #0030b3;
  text-align:center;
}
.divider {
margin-bottom: 40px;
}
.section-grey .divider {
  background-color: #ccc;
}
#marginesy {
margin-top: 30px;
margin-bottom: 30px;	
}
#wpisy {
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: 1fr !important;
     gap: 40px;
     align-items: center;
}
 .features {
     padding: 70px 0 50px 0;
     position: relative;
     overflow: hidden;
}
#tabela {
margin-top: 0px;
}
}
span{
color: #ff66cc;	
}
#opis {
font-size: 2rem;
line-height: 2.5rem;	
}
#zalety {
font-size: 19px;
color: #fff;
}
#glass2 {
     background: #e6f2ff;
	 color: #000;
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);	
}
#zalety2 {
font-size: 19px;
color: #000;
display: inline-block;
margin-top: 15px;
}
#miniaturka {
	float: left;
	margin-right: 20px;
}
#miniaturka2 {
	float: right;
}
#features2 {
     padding: 70px 0 50px 0;
     position: relative;
     overflow: hidden;
}
#publikacja {
background-image: url('../images/publiteka.png');
}
#kontakt {
background-color: #e6f2ff;
padding: 50px 0 50px 0;
}
#kontakt2 {
background-color: #e6f2ff;
padding: 70px 0 50px 0;
}
#kontakt3 {
background-color: #e6f2ff;
padding: 70px 0 50px 0;
}
#kontakt4 {
background-color: #fff;
padding: 70px 0 50px 0;
}
#kontakt5 {
background-color: #fff;
padding: 30px 0 50px 0;
}
#kontakt6 {
background-color: #e6f2ff;
padding: 30px 0 50px 0;
}
#kontakt7 {
background-color: #fff;
padding: 40px 0 25px 0;
}
#animacja {
background: radial-gradient(circle at 15% 85%, #0030b3 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, #0036cc 0%, transparent 50%),
    radial-gradient(circle at 45% 60%, rgba(40, 70, 150, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 70% 40%, rgba(50, 90, 180, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, #0a1738 0%, #142c5a 50%, #071227 100%);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
} 
#mailowy {
color: #ff66cc;	
font-size: 25px;
font-weight: 700;
}
#mailowy2 {
color: #ff66cc;	
font-size: 22px;
font-weight: 700;
}
#ikonka {
float: left;
}
#stopka2 {
color: #fff;
margin-top: 15px;
}
#logotyp {
	align-items: center;
	display: inline-flex;
}
#stopka3 {
color: #fff;
padding-top: 20px;
}
#strona {
	color: #000;
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
}
#strona h1 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona h3 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona p {
    margin: 0px 0px 20px 0px;
	font-size: 18px;
}
#strona ul {
    margin-bottom: 20px;
	margin-left: 30px;
	font-size: 18px;	
}
#strona ol {
    margin-bottom: 20px;
	margin-left: 30px;
	font-size: 18px;	
}
#podstrona {
margin-top: 60px;
margin-bottom: 30px;
}
#blog img {
width:100%;
border-radius: 10px;
}
#blog a {
text-decoration: none;
}
#blog a:hover {
text-decoration: underline;
}
#wpisy {
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 40px;

}
#tytul {
font-weight: 700;
color: #000;	
}
#maly {
color: #000;
}
#strona2 p {
    margin: 0px 0px 3px 0px;
	font-size: 18px;
}
#strona2 {
	color: #000;
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
}
#strona2 h1 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona2 h2 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona2 h3 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona2 h4 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona2 h5 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona2 ul {

	margin-left: 30px;
	margin-top: 10px;
}
#strona2 ol {
    margin-bottom: 20px;
	margin-left: 30px;
	font-size: 18px;	
}
#grubosc {
	font-weight: 900 !important;
}
#baner {
max-width: 100%;
margin-bottom: 15px;
border-radius: 10px;
}
.article-content p {
margin-bottom: 16px!important;
line-height: 1.7;
}
.article-content img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}
.article-content figure,
.article-content .wp-caption,
.article-content iframe {
  max-width: 100% !important;
}
#panel {
background: #ff66cc;	
color: #0030b3;	
font-weight: 700;
border: 2px solid #ff66cc;
border-radius: 10px;
padding: 10px 15px 10px 15px;	
}
#informacja {
color: #0030b3;
font-size: 19px;
font-weight: 700;
margin: 0px 10px 0px 10px;	
text-align: center;
}

.nice-table {
  color: #2d2f39;
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;          
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  font-weight: 500;  
}
.nice-table thead {
  background: #ffb84d;
}
.nice-table th,
.nice-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #d9d9d9;
  white-space: nowrap;
}
.nice-table th {
  font-weight: 600;
  color: #1a3556;
  font-size: 15px;
}
.nice-table tbody tr:hover {
  background: #f2f7ff;  
}
#link {
width: 16px;
margin-bottom: -1px;
display: block;
}

.link-icon {
display: inline-block;
}

.after-icon {
display: inline-block;
width: 7px;   /* dawny margin-right */
}
#tabela {
	overflow-x: auto;
}
#domena {
font-size: 16px;
color: #0030b3;
font-weight: 600;	
}
#kategoria {
	  font-size: 13px;
  color: #2d2f39;	
	display: inline;
    background: #ffe6f7;
    border-radius: 5px;
	padding: 5px 8px 5px 8px;
}
.center {
    text-align: center !important;
}
.table-scroll {
    max-height: 620px;
    overflow-y: auto;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    scrollbar-color: #cccccc #e5e5e5;        /* suwak | tło */
}
.sortable th {
  cursor: pointer;
  position: relative;
}

.sortable th.asc::after {
  content: "▲";
  margin-left: 3px;
}

.sortable th.desc::after {
  content: "▼";
  margin-left: 3px;  
}
.sortable th {
    cursor: default;
}

.sortable th[data-sort] {
    cursor: pointer;
}
.sortable th[data-sort] .sort-icon {
  margin-left: 4px;
  font-size: 1em;
  color: #1a3556;
}

.sortable th.asc .sort-icon,
.sortable th.desc .sort-icon {
  display: none;
}
#sortowanie {
margin-bottom: 0px;
}
#ramka3{
padding: 2px 2px;
border-radius: 5px;	
color: #fff;	 
}
#ramka4{
padding: 2px 2px;
border-radius: 10px;		 
}
#ramka5{
margin-bottom: 0px;		 
}
#specyfikacja {
border-radius: 5px;
     padding: 10px 15px;	
}
.table-scroll thead th {
    position: sticky;
    top: 0;
    z-index: 2;
	overflow: hidden;
    background: #ffb84d;	
}
td.img-col {
vertical-align: middle;    
padding: 0px 0px 0px 5px;	
}

td.img-col img {
    display: inline-block;
    vertical-align: middle;
}
#screen {
width: 70px;
height:40px;
border-radius: 4px;
}

td.checkbox-cell {
    vertical-align: middle;
    text-align: center;
}

.big-checkbox input[type="checkbox"] {
    width: 17px;
    height: 17px;
    cursor: pointer;
    display: inline-block; 
    vertical-align: middle;
}
#strona3 p {
    margin: 0px 0px 3px 0px;
	font-size: 18px;
}
#strona3 {
	color: #000;
     max-width: 1450px;
     margin: 0 auto;
     padding: 0 20px;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
}
#strona3 h1 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona3 h2 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona3 h3 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona3 h4 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona3 h5 {
    font-weight: 700;
    color: #212631;
    margin: 15px 0px 15px 0px;
}
#strona3 ul {
    margin-bottom: 20px;
	margin-left: 30px;
	font-size: 18px;	
}
#strona3 ol {
    margin-bottom: 20px;
	margin-left: 30px;
	font-size: 18px;	
}
#niebieski {
color: #0030b3;
font-size: 18px;
font-weight: 500;
}	
#przyciski {
text-align: center;	
margin: 20px 10px 0px 10px;
}
#przyciski2 {
text-align: center;	
margin: 5px 10px 0px 10px;
}
#publikuj {
margin: 10px 10px 10px 10px;
text-align: center;
}
#liczba1 {
color: #ff66cc;	
font-weight: 900;	
}
#liczba2 {
color: #ffb84d;	
font-weight: 900;	
}
#liczba3 {
color: #ffb84d;	
font-weight: 700;
}
#liczba4 {
color: #ff66cc;	
font-weight: 700;
}
#tabelazamowien {
font-size: 14px;
font-weight: 500;	
}
#wieksza {
font-size: 16px;
font-weight: 600; 	
}
.new-checkbox input[type="radio"] {
    width: 17px;
    height: 17px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-bottom: 2px;

    /* ukrywamy natywny wygląd i rysujemy własne kółko */
    appearance: none;
    -webkit-appearance: none;

    border: 2px solid #666;   /* obramowanie kółka */
    border-radius: 50%;       /* robi z tego kółko */
    background: #ffffff;      /* tło białe */
    position: relative;       /* potrzebne dla pseudo-elementu */
}

/* kropka w środku po zaznaczeniu */
.new-checkbox input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    inset: 2px;               /* odstęp od krawędzi – reguluje wielkość kropki */
    border-radius: 50%;
    background-color: #ff66cc; /* kolor kropeczki */
}

#tabelazamowien td.link-count-readonly .new-checkbox,
#tabelazamowien td.link-count-readonly .new-checkbox input[type="radio"] {
    cursor: default;
}

#dodawanie {
text-decoration: none;
font-size: 14px;	
color: #0030b3;	
font-weight: 500;
	border: 2px solid #0030b3;
	border-radius: 7px;
	padding: 3px 5px 3px 5px;	
}
#usuwanie {
text-decoration: none;
font-size: 14px;	
color: #e60000;	
font-weight: 500;
	border: 2px solid #e60000;
	border-radius: 7px;
	padding: 3px 5px 3px 5px;	
}
#podsumowanie h1 {
font-size: 23px;
margin-top: 0px;	
}
#podsumowanie {
margin-top: 20px;	
}
#zamow2 {
color: #0030b3;	
padding: 13px 30px 13px 30px; 
border: 3px solid #0030b3;
font-weight: 700;
margin: 20px 10px 30px 10px;
}

#malygap {
gap: 5px;	
}
#podsumowanie2 {
margin-top: 2px;
margin-bottom: 10px;	
}
#malymargines {
margin-bottom: 5px;
display: inline-block;
}
#malymargines2 {
margin-bottom: 18px;
}
#oproznij {
font-size: 14px;
font-weight: 700;
color: #ff0000;
}
#oproznij2 {
text-decoration: none;	
}
#zmiana {
font-size: 14px;
font-weight: 700;
color: #ff66cc;
}
#zmiana2 {
text-decoration: none;	
}
/* Link Koszyk – może dziedziczyć resztę styli z .nav-links a */
.cart-link {
position: relative;
padding: 16px 10px 6px 8px !important; 
border-radius: 15px;
margin-right: 10px;
}

/* Kółko z liczbą */
.cart-badge {
    display: inline-block;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ff66cc;   /* kolor tła kółka */
    color: #ffffff;
    font-size: 10px;
    line-height: 20px;
    font-size: 12px;	
    text-align: center;
    font-weight: 500;
	margin-left: -6px;
}
/* jeśli liczba pusta – schowaj badge */
.cart-badge:empty {
    display: none;
}
.mobile-nav .cart-link {
    padding: 15px 20px !important;
    margin-right: 0;
}
.mobile-nav .cart-badge {
    font-size: 0.85rem;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    margin-left: 6px;
    vertical-align: middle;
}
.my-icon {
    filter: invert(70%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}
#lewa2 {
float: left;
}

#wprowadzenie {
margin-bottom: 10px;
}	
#nazwa {
font-size: 27px;
font-weight: 700;
color: #0030b3;
}
#oplacono {
color: #009933;
}
#oplac {
color: #e60000;
}
#platnosc {
text-decoration: none;
font-size: 14px;	
color: #e60000;	
font-weight: 500;
	border: 2px solid #e60000;
	border-radius: 7px;
	padding: 3px 5px 3px 5px;	
}
#raport {
text-decoration: none;
font-size: 14px;	
color: #0030b3;	
font-weight: 500;
	border: 2px solid #0030b3;
	border-radius: 7px;
	padding: 3px 5px 3px 5px;	
}
#kontakt8 {
background-color: #fff;
padding: 20px 0 25px 0;
}
.no-copy {
    background-color: #e5e5e5 !important;        /* szare tło */
    user-select: none;                /* brak zaznaczania */
    -webkit-user-select: none;
    pointer-events: none;             /* brak interakcji */
    color: #fff;
    border: 1px solid #ccc;
}
#lewymargin {
color: #fff;
margin-left: 5px;
}
#zgoda {
padding: 20px 20px 0px 20px;
color: #191a1f;
text-align: center;
}
#wyzej {
margin-bottom: 2px !important;	
}
#znizka {
color: #fff;
margin-left: 6px;
font-size: 12px;
padding: 0px 3px;
background-color: #009900;
border-radius: 2px;
font-weight: bold;
display: inline-block;
margin-bottom: 5px;
vertical-align: middle;
}
