 :root {
     --accent: #ff6f91;
     --accent-dark: #e85a78;
     --bubble-color: #ffd1dc;
     --section-bg: #fdf9fb;
     --text: #333;

     --page-back-color: #fff9f9;
     --card-back-color: #d9d9d9;
     --additional-elements: #c6a02c;
     --others-elemenmts: #faebeb;
 }

 body {
     margin: 0;
     background-color: var(--page-back-color);
     color: var(--text);
 }

 body * {
     font-family: 'Montserrat', sans-serif;
     font-weight: 300;
 }

 .bold {
     font-weight: 600;
 }

 .hero-header {
     background-color: var(--page-back-color);
     /* background: linear-gradient(rgba(250, 235, 235, 0.85), rgba(255, 255, 255, 0.8)); */
     height: 100vh;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
 }

 .hero-header::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     backdrop-filter: blur(4px);
 }

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

 .hero-content h1 {
     font-size: 4rem;
     font-weight: 600;
     color: #fff;
 }

 .hero-content p {
     font-size: 1.3rem;
     margin-top: 20px;
     color: #eee;
 }

 .hero-content h1,
 .hero-content p {
     text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
 }

 .hero-logo {
     max-width: 220px;
     width: 40vw;
     height: auto;
     margin-bottom: 20px;
     filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.5));
     transition: transform 0.3s ease;
 }

 .hero-logo:hover {
     transform: scale(1.05);
 }

 section {
     padding: 80px 20px;
     max-width: 1200px;
     margin: auto;
 }

 h2 {
     text-align: center;
     font-weight: 200;
     font-size: 2.5rem;
     color: #000;
     margin-bottom: 40px;
 }

 .about-box {
     background: var(--section-bg);
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     font-size: 1.1rem;
 }

 .testimonials-wrapper {
     display: flex;
     overflow-x: auto;
     gap: 20px;
     scroll-behavior: smooth;
     cursor: grab;
     padding-bottom: 20px;
     user-select: none;
 }

 #testimonialScroll {
     display: flex;
     overflow-x: scroll;
     scroll-behavior: auto !important;
     -webkit-overflow-scrolling: auto !important;
     scrollbar-width: none;
     -ms-overflow-style: none;
     cursor: grab;
 }

 .testimonial-bubble {
     min-width: 300px;
     flex-shrink: 0;
     margin: 0 10px;
 }

 .testimonial-bubble {

     flex: 0 0 32%;
     background: var(--others-elemenmts);
     padding: 30px;
     border-radius: 20px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     min-width: 300px;
 }

 .testimonial-bubble p {
     font-size: 1rem;
     margin: 0 0 10px;
 }

 .testimonial-bubble h5 {
     font-weight: 600;
     margin: 0;
     font-size: 1.1rem;
 }

 footer {
     background-color: var(--section-bg);
     text-align: center;
     padding: 20px;
 }

 .custom-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     background: rgba(0, 0, 0, 0.5);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     display: none;
 }

 .custom-modal-content iframe {
     border: none;
     width: 100%;
     height: 90vh;
     border-radius: 12px;
 }

 .custom-modal-content {
     background: white;
     padding: 0;
     border-radius: 20px;
     max-width: 800px;
     width: 90%;
     text-align: center;
     overflow: hidden;
     position: relative;
 }

 .close-button {
     position: absolute;
     top: 10px;
     right: 15px;
     font-size: 1.8rem;
     color: #999;
     cursor: pointer;
     z-index: 10000;
 }

 .close-button:hover {
     color: #000;
 }

 .btn-cwl {
     background: var(--additional-elements);
     color: white;
     padding: 15px 40px;
     border: none;
     border-radius: 50px;
     font-size: 1.2rem;
     cursor: pointer;
     text-decoration: none !important;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
     animation: pulse 2s infinite;
 }

 .btn-cwl:hover {
     filter: brightness(90%);
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(198, 160, 44, 0.4);
     }

     70% {
         transform: scale(1.05);
         box-shadow: 0 0 0 20px rgba(233, 30, 99, 0);
     }

     100% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
     }
 }

 .menu {
     position: fixed;
     top: 0;
     right: 0;
     padding: 20px;
     z-index: 9999;
 }

 .hamburger {
     width: 35px;
     height: 25px;
     cursor: pointer;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .hamburger span {
     height: 4px;
     width: 100%;
     background-color: var(--additional-elements);
     border-radius: 5px;
     transition: all 0.3s ease;
 }

 .nav-links {
     position: fixed;
     top: 0;
     right: 0;
     height: 100vh;
     width: 100%;
     background-color: var(--page-back-color);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     transform: translateX(100%);
     transition: transform 0.5s ease;
     z-index: 9998;
 }

 .nav-links.active {
     transform: translateX(0%);
 }

 .nav-links a {
     font-size: 2rem;
     margin: 20px 0;
     text-decoration: none;
     color: var(--additional-elements);
     transition: color 0.3s ease;
     animation: fadeInUp 0.7s;
 }

 .close-nav {
     position: absolute;
     top: 20px;
     right: 25px;
     font-size: 2.5rem;
     font-weight: bold;
     color: var(--additional-elements);
     cursor: pointer;
     z-index: 9999;
     transition: transform 0.2s ease;
 }

 .close-nav:hover {
     transform: scale(1.2);
     filter: brightness(90%);
 }

 .nav-links a:hover {
     filter: brightness(90%);
     transform: scale(1.05);
 }

 @media (max-width: 768px) {
     .nav-links a {
         font-size: 1.5rem;
     }

     .hero-header {
         height: 80vh;
     }

     .custom-modal-content iframe {
         height: 80vh;
     }

     .hero-content h1 {
         font-size: 2.2rem;
     }

     .hero-content p {
         font-size: 1rem;
     }

     .btn-cwl {
         font-size: 1rem;
         padding: 10px 25px;
     }
 }

 .contact-container {
     max-width: 800px;
     margin: auto;
 }

 .contact-boxes {
     gap: 30px;
 }

 .contact-item {
     background: var(--card-back-color);
     padding: 20px 30px;
     border-radius: 16px;
     min-width: 200px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s;
 }

 .contact-item:hover {
     transform: translateY(-5px);
 }

 .contact-item i {
     font-size: 2rem;
     color: var(--additional-elements);
     margin-bottom: 10px;
     display: block;
 }

 .social-icons a {
     font-size: 1.8rem;
     color: var(--additional-elements);
     margin: 0 10px;
     transition: color 0.3s;
 }

 .social-icons a:hover {
     filter: brightness(90%);
 }

 .map-wrapper {
     overflow: hidden;
     border-radius: 16px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
 }

 .custom-title {
     opacity: 0;
     transform: translateY(-100px);
     animation: fadeDown 1s ease-out forwards;
     animation-delay: 0.2s;
 }

 .custom-subtitle {
     opacity: 0;
     transform: translateY(100px);
     animation: fadeUp 1.2s ease-out forwards;
     animation-delay: 1s;
 }

 @keyframes fadeDown {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }






 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .pricing-box:active {
     transform: scale(0.97);
     filter: brightness(95%);
 }

 .pricing-container {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     justify-content: center;
 }

 .pricing-box {
     background: var(--card-back-color);
     padding: 35px;
     border-radius: 20px;
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
     max-width: 350px;
     flex: 1 1 280px;
     transition: all 0.35s ease;
     position: relative;
     overflow: hidden;
     border: 2px solid transparent;
 }

 .bold {
     font-weight: 500;
 }

 .pricing-box:hover {
     transform: translateY(-8px);
     border-color: var(--others-elemenmts);
     box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
 }

 .pricing-box h4 {
     color: var(--additional-elements);
     font-size: 1.6rem;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
     text-align: center;
     justify-content: center;
 }

 .pricing-box ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .pricing-box li {
     font-size: 1.05rem;
     margin-bottom: 12px;
     line-height: 1.5;
     position: relative;
     padding-left: 20px;
 }

 .pricing-box li::before {
     content: "✓";
     position: absolute;
     left: 0;
     color: var(--additional-elements);
     font-weight: bold;
 }

 .pricing-box strong {
     color: var(--text);
 }

 .pricing-box small {
     font-size: 0.85rem;
     color: #666;
 }

 @media (max-width: 768px) {
     .pricing-container {
         flex-direction: column;
         align-items: center;
     }
 }

 #downloads {
     padding: 80px 20px;
 }

 .download-container {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     justify-content: center;
     margin-top: 40px;
 }

 .download-item {
     display: flex;
     align-items: center;
     gap: 20px;
     background: white;
     padding: 25px 30px;
     border-radius: 16px;
     min-width: 280px;
     max-width: 350px;
     width: 100%;
     text-align: left;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
     text-decoration: none;
     color: inherit;
     cursor: pointer;
     transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
     border: 2px solid transparent;
 }

 .download-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
     border-color: var(--others-elemenmts);
 }

 .download-item i {
     font-size: 2.5rem;
     color: var(--additional-elements);
     flex-shrink: 0;
 }

 .download-item h5 {
     margin: 0;
     font-size: 1.1rem;
     font-weight: 400;
 }

 .download-item p {
     margin: 5px 0 0;
     font-size: 0.95rem;
     color: var(--additional-elements);
 }

 @media (max-width: 768px) {
     .download-item {
         max-width: 100%;
     }
 }

 /* Semantyka/nawigacja czytników */
 .visually-hidden {
     position: absolute !important;
     width: 1px;
     height: 1px;
     margin: -1px;
     padding: 0;
     overflow: hidden;
     clip: rect(0 0 0 0);
     white-space: nowrap;
     border: 0;
 }

 /* Blok „O mnie” bez zdjęcia – maks. czytelność */
 .about-content-only {
     display: grid;
     grid-template-columns: 1fr;
     gap: 16px;
     background: var(--section-bg);
 }

 /* Nagłówek i pigułki specjalizacji */
 .about-header {
     margin-bottom: 8px;
 }

 .about-name {
     margin: 0 0 10px;
     font-weight: 600;
 }

 .about-pills {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .about-pills li {
     background: var(--others-elemenmts);
     color: #222;
     border: 1px solid rgba(0, 0, 0, .04);
     border-radius: 999px;
     padding: 6px 12px;
     font-size: .95rem;
 }

 /* Karta z podejściem (spójna z Twoimi kartami) */
 .quote-card {
     background: #fff;
     border: 1px solid rgba(0, 0, 0, .05);
     border-left: 4px solid var(--additional-elements);
     padding: 16px 18px;
     border-radius: 12px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
 }

 .quote-card p {
     margin: 0;
 }

 /* Lista „check” – jak w cenniku */
 .check-list {
     list-style: none;
     padding: 0;
     margin: 8px 0 0;
 }

 .check-list li {
     position: relative;
     padding-left: 24px;
     margin: 10px 0;
 }

 .check-list li::before {
     content: "✓";
     position: absolute;
     left: 0;
     top: 0;
     color: var(--additional-elements);
     font-weight: 700;
 }

 /* CTA obok siebie, responsywne */
 .about-cta {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     align-items: center;
     margin-top: 8px;
 }

 .btn-link {
     display: inline-block;
     text-decoration: none;
     padding: 12px 18px;
     border-radius: 50px;
     background: var(--card-back-color);
     color: #111;
     transition: transform .2s ease, filter .2s ease;
     border: 2px solid transparent;
 }

 .btn-link:hover {
     transform: translateY(-2px);
     filter: brightness(95%);
     border-color: var(--others-elemenmts);
 }

 /* Typografia i odstępy – lepsza czytelność na mobile */
 #about p {
     line-height: 1.6;
 }

 @media (max-width: 768px) {
     #about {
         padding-left: 16px;
         padding-right: 16px;
     }

     .about-pills li {
         font-size: .9rem;
     }
 }

 @media (prefers-reduced-motion: reduce) {
     .btn-cwl {
         animation: none !important;
     }
 }

 .hero-content {
     position: relative;
     /* już masz, ale zostaw */
     z-index: 1;
     /* już masz */
     width: 100%;
     /* <-- klucz */
     max-width: none;
     /* na wszelki wypadek */
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 0 16px;
     /* bezpieczne marginesy na mobile */
 }

 .hero-text-rotator {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     /* <-- pełna szerokość rodzica */
     min-height: 4.5rem;
     /* stabilna wysokość, przycisk stoi w miejscu */
     overflow: hidden;
     text-align: center;
 }

 .rotating-text {
     position: absolute;
     inset: 0;
     /* wypełnij cały kontener */
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0 1rem;
     /* zapas po bokach */
     width: 100%;
     /* <-- pełna szerokość */
     color: #fff;
     /* biały tekst */
     font-size: clamp(1.6rem, 3vw, 2.6rem);
     font-weight: 500;
     line-height: 1.3;
     white-space: normal;
     /* zawijanie wierszy */
     word-break: break-word;
     text-align: center;
     opacity: 1;
     transition: opacity .6s ease;
     text-shadow: 1px 1px 4px rgba(0, 0, 0, .6);
 }

 .timeline {
     position: relative;
     padding-left: 25px;
 }

 .timeline-line {
     position: absolute;
     left: 15px;
     top: 0;
     bottom: 0;
     width: 2px;
     background: var(--additional-elements);
     opacity: 0.4;
     border-radius: 1px;
 }

 /* każdy element na osi */
 .timeline-item {
     position: relative;
     display: flex;
     align-items: center;
     /* <— klucz: kropka wycentrowana względem dymka */
     gap: 15px;
     margin-bottom: 25px;
     min-height: 60px;
     /* zachowuje rytm osi */
 }

 /* kropka */
 .timeline-dot {
     width: 15px;
     height: 15px;
     border-radius: 50%;
     flex-shrink: 0;
     background: var(--additional-elements);
     position: relative;
     z-index: 2;
     box-shadow: 0 0 0 4px var(--section-bg);
 }

 /* różne kolory kropek */
 .bg-gold {
     background: var(--additional-elements);
 }

 .bg-blue {
     background: #6aa9e9;
 }

 .bg-green {
     background: #5bbd85;
 }

 .bg-pink {
     background: #e88fbf;
 }

 /* dymek z treścią */
 .timeline-content {
     background: var(--others-elemenmts);
     padding: 14px 18px;
     border-radius: 12px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
     transition: transform 0.25s ease, box-shadow 0.25s ease;
     flex: 1;
     /* dymek wypełnia resztę miejsca */
 }

 .timeline-content p {
     margin: 0;
     font-size: 1rem;
     line-height: 1.5;
 }

 .timeline-content:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
 }

 /* Responsywność */
 @media (max-width: 768px) {
     .timeline {
         padding-left: 20px;
     }

     .timeline-item {
         align-items: flex-start;
         /* na mobile wygląda lepiej */
     }

     .timeline-dot {
         margin-top: 8px;
     }
 }

 #help {
     padding: 80px 20px;
     max-width: 1200px;
     margin: 0 auto;
 }

 #help h2 {
     text-align: center;
     font-weight: 200;
     font-size: 2.5rem;
     margin-bottom: 40px;
     color: #000;
 }

 .help-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: clamp(20px, 3vw, 32px);
 }

 @media (max-width:980px) {
     .help-grid {
         grid-template-columns: 1fr;
     }
 }

 /* Karta */
 .help-card {
     background: #fff;
     border-radius: 24px;
     padding: clamp(22px, 2.5vw, 28px);
     box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
     border: 1px solid rgba(0, 0, 0, .05);
 }

 .help-card h3 {
     text-align: center;
     margin-bottom: 6px;
     color: #c6a02c;
     font-weight: 600;
 }

 .help-card h5 {
     margin-bottom: 14px;
     color: #222;
     font-weight: 400;
 }

 /* Lista */
 .pill-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     gap: 10px;
 }

 .pill {
     display: flex;
     align-items: center;
     gap: 10px;
     background: #fff;
     border-radius: 14px;
     padding: 10px 14px;
     border: 1px solid rgba(0, 0, 0, .05);
     box-shadow: 0 5px 14px rgba(0, 0, 0, .03);
     transition: .2s;
 }

 .pill:hover {
     transform: translateY(-2px);
     border-color: #c6a02c;
     box-shadow: 0 10px 20px rgba(0, 0, 0, .07);
 }

 .pill i {
     font-size: 1.1rem;
     color: #c6a02c;
     flex-shrink: 0;
 }

 /* Akordeon */
 .help-accordion {
     margin-top: 30px;
     display: grid;
     gap: 12px;
 }

 .help-accordion details {
     background: #fff;
     border-radius: 14px;
     border: 1px solid rgba(0, 0, 0, .06);
     box-shadow: 0 6px 16px rgba(0, 0, 0, .05);
     overflow: hidden;
 }

 .help-accordion summary {
     padding: 16px 18px;
     font-weight: 500;
     color: #c6a02c;
     position: relative;
     cursor: pointer;
     list-style: none;
 }

 .help-accordion summary::marker,
 .help-accordion summary::-webkit-details-marker {
     display: none;
 }

 .help-accordion summary::after {
     content: "";
     position: absolute;
     right: 16px;
     top: 50%;
     width: 10px;
     height: 10px;
     border-right: 2px solid currentColor;
     border-bottom: 2px solid currentColor;
     transform: translateY(-50%) rotate(-45deg);
     transition: .2s;
 }

 .help-accordion details[open] summary::after {
     transform: translateY(-50%) rotate(45deg);
 }

 .acc-body {
     padding: 0 18px 16px 18px;
 }

 .acc-body p {
     margin: 0;
     line-height: 1.6;
 }

 /* Layout siatki — 2 kolumny desktop, 1 kolumna mobile */
 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 30px;
 }

 @media (max-width: 900px) {
     .pricing-grid {
         grid-template-columns: 1fr;
     }
 }

 /* Karta – spójna z Twoim stylem, ale lżejsza */
 .price-card {
     background: #fff;
     border: 1px solid rgba(0, 0, 0, .06);
     border-radius: 20px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
     padding: 28px;
 }

 .price-card-header {
     text-align: center;
     margin-bottom: 10px;
 }

 .price-card-title {
     margin: 0;
     font-weight: 600;
     color: var(--additional-elements);
 }

 /* Grupy i wiersze cen */
 .price-group {
     margin-top: 14px;
 }

 .price-group-title {
     font-weight: 600;
     color: #222;
     margin-bottom: 8px;
 }

 .price-group-sub {
     font-weight: 500;
     color: #444;
     margin-bottom: 6px;
 }

 /* Jednolity wiersz: nazwa po lewej, cena po prawej */
 .price-row {
     display: flex;
     align-items: baseline;
     justify-content: space-between;
     gap: 14px;
     padding: 10px 0;
     border-bottom: 1px dashed rgba(0, 0, 0, .08);
 }

 .price-row:last-child {
     border-bottom: none;
 }

 .price-row span:first-child {
     flex: 1 1 auto;
     line-height: 1.45;
 }

 .price {
     flex: 0 0 auto;
     font-weight: 600;
     color: #111;
     background: var(--others-elemenmts);
     padding: 2px 10px;
     border-radius: 999px;
     border: 1px solid rgba(0, 0, 0, .05);
 }

 .price small {
     font-weight: 400;
     color: #555;
 }

 /* Separator i notatka */
 .price-sep {
     border: 0;
     border-top: 1px solid rgba(0, 0, 0, .06);
     margin: 16px 0;
 }

 .price-note {
     margin: 8px 0 2px;
     font-size: .95rem;
     color: #555;
     background: #fff;
     border: 1px solid rgba(0, 0, 0, .06);
     border-left: 3px solid var(--additional-elements);
     padding: 8px 10px;
     border-radius: 10px;
 }

 /* Drobne dopieszczenie hover (opcjonalnie) */
 .price-card:hover {
     box-shadow: 0 14px 30px rgba(0, 0, 0, .09);
     transform: translateY(-2px);
     transition: .25s ease;
 }