     /* --- RESET & VARIABLES --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --white: #ffffff;
            --black: #000000;
            --muted: #6b6b6b;
            --border-light: #eeeeee;
            --border-dark: #222222;
            --container: 1100px;
           --ai-blue: #007bff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            background-color: var(--white);
            color: var(--black);
            -webkit-font-smoothing: antialiased;
            scroll-behavior: smooth;
        }

        .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
        section { padding: 100px 0; }
        .section-white { background: var(--white); color: var(--black); }
        .section-black { background: var(--black); color: var(--white); }
        .flex-row { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
        .col { flex: 1; min-width: 300px; }

        /* --- NAVIGATION & LOGO ANIMATION --- */
        nav {
            padding: 20px 0;
            border-bottom: 5px solid black;
            position: sticky;
            top: 0;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }
        nav .container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -1.5px; text-decoration: none; color: var(--black); }
        
        /* --- BUTTONS & STATES --- */
        .btn-black {
            background: var(--black);
            color: var(--white);
            padding: 12px 30px;
          
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: 0.2s;
            border: 3px solid var(--black);
            cursor: pointer;
        }

        .action-cell { min-width: 140px; text-align: right; }
        
        .placeholder-text { font-size: 0.7rem; color: #444; font-style: italic; }

        .btn-buy {   
            background: var(--white); 
            color: var(--black); 
            padding: 10px 20px; 
            border-radius: 6px;  
            font-weight: 600; 
            font-size: 0.8rem; 
            text-decoration: none;
            display: none; 
            width: 140px;
            text-align: center;
            animation: fadeIn 0.4s ease forwards;
        }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

        .btn-taken { background: #333 !important; color: #666 !important; cursor: not-allowed; opacity: 0.6; }

        /* Spinner */
        .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.1);
            border-top: 2px solid var(--white);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-left: auto;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        /* --- HERO & SEARCH --- */
        .hero-search-area { text-align: center; padding: 60px 0; }
        .hero-h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 800; letter-spacing: -3px; line-height: 1; margin-bottom: 20px; }
        .hero-p { font-size: 1.1rem; color: var(--muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .search-wrapper { max-width: 800px; margin: 0 auto; }
        .search-bar { display: flex; background: var(--white); border: 3px solid var(--black); padding: 6px; }
        .search-bar input { flex: 1; border: none; padding: 15px 25px; font-size: 1.2rem; font-family: inherit; outline: none; }

        /* --- PRICING --- */
      /* --- POPRAWIONE PRICING DOMENY --- */
     
        /* --- FEATURES --- */
        .feature-img { width: 100%; max-width: 400px; filter: grayscale(1); }
        .feature-h3 { font-size: 2.5rem; font-weight: 800; letter-spacing: -2px; margin-bottom: 20px; line-height: 1.1; }

        /* --- FOOTER --- */
        footer { background: var(--black); color: var(--white); padding: 80px 0; border-top: 1px solid var(--border-dark); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
        .footer-head { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: #444; margin-bottom: 20px; }
        .footer-links a { display: block; color: #777; text-decoration: none; margin-bottom: 10px; }

        @media (max-width: 768px) {
            .pricing-item { grid-template-columns: 1fr 1fr; gap: 20px; }
            .search-bar { flex-direction: column; border: none; }
        }

        /* --- RESPONSIVE PRICING: VERTICAL STACK --- */
@media (max-width: 768px) {
    
    .pricing-item {
        /* Zamieniamy grid na flexbox w kolumnie */
        display: flex !important;
        flex-direction: column;
        align-items: flex-start; /* Wszystko do lewej */
        gap: 12px;
        padding: 30px 15px;
        border-bottom: 1px solid #333;
    }

    /* 1. Nazwa domeny na samej górze */
    .item-tld {
        width: 100%;
        font-size: 1.8rem;
        margin-bottom: 5px;
        border-bottom: 1px solid #222;
        padding-bottom: 10px;
    }
.pricing-item > :first-child {
  text-align: center;
}
.search-bar input {

  padding: 10px 15px;

  border: 4px solid black;
}
    /* 2. Ceny jedna pod drugą (lub w małych grupach) */
    /* Wybieramy kontenery z cenami */
    .pricing-item > div:not(.item-tld):not(.action-cell) {
        display: flex;
        justify-content: space-between;
        width: 100%; /* Rozciągamy, żeby label był po lewej, a cena po prawej */
        padding: 5px 0;
        border-bottom: 1px dashed #222;
    }

    .item-label {
        margin-bottom: 0;
        font-size: 0.75rem;
        color: #888;
        display: flex;
        align-items: center;
    }

    .item-val {
        font-size: 1.1rem;
        color: #fff;
    }

    /* 3. Przycisk na samym dole */
    .pricing-item .action-cell {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .btn-buy-now {
        width: 100%; /* Duży, wygodny przycisk na całą szerokość */
        padding: 16px;
        font-size: 1rem;
        display: block;
        background: var(--white);
        color: var(--black);
    }
}
      /* --- STYLE DLA DROPDOWN --- */
    .nav-actions {   
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .dropdown {
        position: relative;
        display: inline-block;
    }

    .btn-tools {
        background: transparent;
        color: var(--black);
        border: 0px;
        padding: 8px 20px;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        text-transform: uppercase;
        transition: 0.2s;
    }

    .btn-tools:hover {
        background: var(--black);
        color: var(--white);
    }

    .dropdown-content {
        display: none;
        position: absolute;
        right: 0;
        background-color: var(--white);
        min-width: 200px;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
        border: 2px solid var(--black);
        border-radius: 8px;
        z-index: 1100;
        margin-top: 5px;
        overflow: hidden;
    }
button {
    border:0px;
}
    .dropdown-content a {
        color: var(--black);
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        border-bottom: 1px solid var(--border-light);
        transition: 0.2s;
    }

    .dropdown-content a:last-child {
        border-bottom: none;
    }

    .dropdown-content a:hover {
        background-color: #f1f1f1;
        padding-left: 20px;
    }

    /* Pokaż menu po najechaniu */
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .btn-black {
        background: var(--black);
        color: var(--white);
        text-decoration: none;
       
        font-weight: 700;
        transition: 0.2s;
    }
    
    .btn-black:hover {
        opacity: 0.8;
    }
    /* Styl dla całego wiersza, gdy domena jest zajęta */
.pricing-item.is-taken {
    opacity: 0.4;
    filter: grayscale(1);
    background: rgba(255, 255, 255, 0.02); /* Delikatne tło dla odróżnienia */
    pointer-events: none; /* Blokuje kliknięcia w cały wiersz */
}

/* Opcjonalnie: usuwamy przekreślenie, jeśli chcesz tylko szarość, 
   ale zostawiamy ikony ✘ dla jasności */
.pricing-item.is-taken .item-val {
    color: #666 !important;
}

.search-bar.loading input {
    background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

    /* Styl dla przycisków w tabeli */
.btn-buy-now {
    background: var(--white);
    color: var(--black);
    padding: 8px 16px;
    text-decoration: none;
   
    font-size: 0.8rem;
   
    transition: 0.3s;
    display: inline-block;
}

.btn-buy-now.taken {
    background: #222;
    color: #555;
    cursor: not-allowed;
    pointer-events: none;
}

.pricing-item .action-cell {
    text-align: right;
}

/* Dostosowanie siatki cennika pod przycisk */
.pricing-item {
    grid-template-columns: 4fr 1fr 1fr 1fr 1.2fr;
}    
.pricing-minimal { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    padding: 20px 0; 
}

.pricing-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    background: #fff; /* Biały blok */
   
    padding: 20px;
    align-items: center;
    transition: transform 0.2s ease;
    gap: 0; /* Resetujemy gap dla pionowych linii */
}


.item-tld { 
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem; 
    font-weight: 800; 
    letter-spacing: -1px;
    color: #000 !important; /* Wymuszenie czarnego na białym tle */
    text-align: left;
}

.item-tld .domain-tld {
    background: #000;
    color: #fff;
    padding: 2px 8px;
    margin-left: 5px;
}

/* Bloki z cenami - stylizowane jak host-info-block */
.price-block {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #000;
    padding-left: 20px;
}

.item-label {
    color: #666 !important;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.item-val { 
    font-size: 1.2rem; 
    font-weight: 800;
    color: #000 !important;
}

/* Przycisk w nowym stylu */
.btn-buy-now {
    background: #000 !important;
    color: #fff !important;
    padding: 12px 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.btn-buy-now:hover {
    background: var(--ai-blue) !important;
}

/* Obsługa domen zajętych w nowym stylu */
.pricing-item.is-taken {
    background: #f0f0f0;
    border-color: #ccc;
    opacity: 0.8;
    filter: grayscale(1);
}

.pricing-item.is-taken .item-tld .domain-tld { background: #ccc; }

/* Responsive dla domen */
@media (max-width: 992px) {
    .pricing-item {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .price-block { border-left: none; border-top: 0px solid #000; padding: 10px 0 0 0; }
    .item-tld { grid-column: span 2; }
}
    /* --- HOSTING CUSTOM CLASSES --- */
.host-row { 
    display: grid; 
    grid-template-columns: 4fr 1fr 1fr 1fr 1.2fr; 
    border-bottom: 1px solid #222; 
    padding: 25px 0; 
    align-items: center; 
}

.host-title { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; color: #fff; }
.host-accent { color: var(--ai-blue); margin-left: 8px; }
.host-label { color: #444; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.host-price { font-size: 1.1rem; font-weight: 600; color: #fff; }

@media (max-width: 768px) {
    .host-row { display: flex !important; flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px; }
    .host-row > div { width: 100%; display: flex; justify-content: space-between; border-bottom: 1px dashed #222; padding: 5px 0; }
    .footer-grid {
        grid-template-columns: 1fr; /* Zmienia 3 kolumny na jedną */
        gap: 30px;                  /* Zmniejsza odstęp między sekcjami na mobile */
        text-align: center;         /* Opcjonalnie: wyśrodkowanie treści na telefonie */
    }

    .footer-links a {
        margin-bottom: 15px;        /* Większe odstępy między linkami, by łatwiej było klikać palcem */
    }  
}

    /* NOWY, AGRESYWNY STYL DLA HOSTINGU */
    .pricing-minimal-host {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .host-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        background: #fff; /* Biały blok dla kontrastu */
        border: 4px solid #000; /* Gruby, czarny border */
        padding: 20px;
        align-items: center;
        transition: transform 0.2s ease;
    }


 
    .host-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 1.6rem;
        color: #000;
        letter-spacing: -1px;
    }

    .host-accent {
        background: #000;
        color: #fff;
        padding: 2px 10px;
        margin-left: 10px;
        display: inline-block;
    }

    .host-info-block {
        display: flex;
        flex-direction: column;
        border-left: 2px solid #000;
        padding-left: 20px;
    }

    .host-label {
        color: #666;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .host-price {
        font-size: 1.3rem;
        font-weight: 800;
        color: #000;
    }

    @media (max-width: 768px) {
        .host-row {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .host-info-block {
            border-left: none;
           
            padding-left: 0;
            padding-top: 10px;
        }
    }

        /* Styl dla siatki dodatkowych atutów */
.host-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
   
}

.feature-box {
    background: #fff;
    border: 4px solid #000;
    padding: 20px;
    text-align: center;
    color: black;
    transition: 0.2s;
}


.feature-box i {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
    display: block;
}

.feature-box h4 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
}

/* Sekcja technologii (loga/ikony) */
.tech-stack {
    margin-top: 60px;
    padding: 30px;
    border-top: 2px dashed white;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    color: white;
    gap: 40px;
   
 
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.tech-item i { font-size: 1.8rem; }


/* --- MODAL STYLES --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    color: black !important;
    
    /* KLUCZOWE: Pozwala przewijać cały modal, gdy jest długi */
    overflow-y: auto; 
    padding: 20px 0;
}

/* Klasa dodawana do body przez JS, aby tło się nie ruszało */
body.modal-open {
    overflow: hidden;
}
/* Ukrywa przyciski powrotu, gdy modal nie jest w procesie zakupowym */
.hide-back-btn .btn-back, 
.hide-back-btn button[onclick*="goToStep"] {
    display: none !important;
}
.modal-content {
    background-color: var(--white);
    margin: 40px auto; /* Odstęp od góry i dołu ekranu */
    padding: 30px;
    width: 90%;
    max-width: 500px;
     color: black !important;
    border: 3px solid var(--black);
    position: relative;
    animation: modalSlide 0.3s ease-out;
}

@keyframes modalSlide {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--black);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.close-modal {
    font-size: 2rem;
    font-weight: 800;
    cursor: pointer;
    line-height: 1;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-info b { font-size: 1.1rem; }
.cart-item-price { font-weight: 600; }

.btn-remove {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 0.8rem;
    text-decoration: underline;
    margin-left: 15px;
}

.cart-total {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
}



/* Styl Twoich sekcji formularza */
.form-section { display: none; }
.form-section.active { display: block; }

.account-type-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid #000;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
}

.tab-btn.active {
    background: #000;
    color: #fff;
}

.btn-back {
    background: transparent;
    border: 0px;
    margin-top: 30px;
}

.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { display: block; font-weight: bold; margin-bottom: 5px; }
.field-desc { font-size: 0.75rem; color: #666; margin-bottom: 5px; line-height: 1.2; }
.form-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid black;
    box-sizing: border-box;
}

.form-row { display: flex; gap: 10px; }
.form-row .form-group { flex: 1; }

.btn-register {
    background: #000;
    color: #fff;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    text-transform: uppercase;
}