/* Plik: web/assets/css/main.css
   Projekt: Moja Własna Architektura (moja-architektura.pl)
   Opis: Kompletny system stylów zgodny ze specyfikacją wizualną, mobile-first, zoptymalizowany pod kątem nowoczesnego i czytelnego interfejsu.
*/

/* 1. ZMIENNE GLOBALNE I SYSTEM KOLORÓW */
:root {
    /* Paleta główna */
    --c-purple: #534AB7;
    --c-purple-dark: #3C3489;
    --c-purple-light: rgba(123, 113, 222, 0.16);
    --c-forest-dark: #0a1810;
    --c-forest-mid: #0c1f14;
    --c-mint: #9FE1CB;
    --c-bg: #0a1810;
    --c-bg-card: rgba(23, 20, 36, 0.88);
    --c-bg-soft: rgba(255, 255, 255, 0.04);
    --c-sidebar: #17131f;
    --c-rail: #100d18;
    --c-text: #ECE8E1;
    --c-text-muted: #ABA7B4;
    --c-text-hint: #7F7C8A;
    --c-border: rgba(255, 255, 255, 0.10);

    /* Kolory dedykowane dla 5 typów energetycznych */
    --c-gen: #534AB7;
    --c-gen-bg: #EEEDFE;
    
    --c-mg: #BA7517;
    --c-mg-bg: #FAEEDA;
    
    --c-proj: #0F6E56;
    --c-proj-bg: #E1F5EE;
    
    --c-manif: #D85A30;
    --c-manif-bg: #FAECE7;
    
    --c-refl: #185FA5;
    --c-refl-bg: #E6F1FB;

    /* Promienie zaokrągleń */
    --r-small: 6px;
    --r-card: 12px;
    --r-large: 16px;

    /* Przejścia */
    --transition: all 0.25s ease-in-out;
}

/* 2. RESET I USTAWIENIA BAZOWE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text);
    background-color: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3. TYPOGRAFIA (Ścisłe przestrzeganie wag 400 i 500, brak kapitalików) */
h1, h2, h3, h4 {
    font-weight: 500;
    line-height: 1.3;
    color: var(--c-text);
}

.font-serif {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

p {
    font-weight: 400;
    margin-bottom: 1.25rem;
}

a {
    color: var(--c-purple);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

a:hover {
    color: var(--c-purple-dark);
}

/* 4. STRUKTURA I UKŁAD (Mobile-first) */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Główny kontener pod sekcją Hero i paskiem AI */
.app-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem;
}

@media (min-width: 1024px) {
    .app-container {
        flex-direction: row;
        padding: 2rem;
        gap: 2rem;
    }
}

/* Cienki pasek ikon (Rail) */
.sidebar-rail {
    display: none; /* Ukryty na mobile */
    background-color: var(--c-rail);
    width: 56px;
    min-width: 56px;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 2rem;
    border-radius: var(--r-large);
}

@media (min-width: 1024px) {
    .sidebar-rail {
        display: flex;
    }
}

.sidebar-rail a {
    color: var(--c-text-hint);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-small);
    transition: var(--transition);
}

.sidebar-rail a:hover, .sidebar-rail a.active {
    color: var(--c-mint);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Menu boczne (Sidebar) */
.sidebar-menu {
    background-color: var(--c-bg-soft);
    padding: 1.5rem;
    border-radius: var(--r-large);
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .sidebar-menu {
        width: 180px;
        min-width: 180px;
        margin-bottom: 0;
        padding: 0;
        background-color: transparent;
    }
}

.menu-group {
    margin-bottom: 1.5rem;
}

.menu-group-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--c-text-hint);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.menu-list {
    list-style: none;
}

.menu-item {
    margin-bottom: 0.25rem;
}

.menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    color: var(--c-text-muted);
    font-weight: 400;
    font-size: 0.9rem;
    border-radius: var(--r-small);
}

.menu-link:hover, .menu-link.active {
    background-color: var(--c-bg-card);
    color: var(--c-text);
}

/* Kropki i odznaki (Badges) */
.menu-link-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.dot-gen { background-color: var(--c-gen); }
.dot-mg { background-color: var(--c-mg); }
.dot-proj { background-color: var(--c-proj); }
.dot-manif { background-color: var(--c-manif); }
.dot-refl { background-color: var(--c-refl); }

.badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    background-color: var(--c-purple-light);
    color: var(--c-purple);
}

.badge-outline {
    background-color: transparent;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
}

/* Główny obszar treści */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* 5. HERO IMMERSYJNY */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--c-forest-dark) 0%, var(--c-forest-mid) 100%);
    color: #FFFFFF;
    padding: 6rem 1rem 4rem 1rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem 6rem 2rem;
    }
}

/* Gwiazdy SVG w tle */
.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Przezroczysta nawigacja na Hero */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1rem;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-nav {
        padding: 1.5rem 4rem;
    }
}

.logo {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.25rem;
    color: #FFFFFF;
    font-weight: 500;
}

.nav-links {
    display: none;
    gap: 2rem;
    list-style: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--c-mint);
}

/* Pigułka (Pill) u góry treści */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--c-mint);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto 2.5rem auto;
    font-weight: 400;
}

/* Gradient przyciemniający od dołu */
.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--c-bg), transparent);
    z-index: 1;
}

/* 6. PASEK AI */
.ai-bar {
    background-color: var(--c-sidebar);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-bar i {
    color: var(--c-mint);
    font-size: 1.1rem;
}

/* 7. ELEMENTY FORMULARZA I KALKULATOR */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-intro {
    color: var(--c-text-muted);
    margin-bottom: 2rem;
}

.card {
    background-color: var(--c-bg-card);
    border-radius: var(--r-card);
    padding: 1.5rem;
    border: 1px solid var(--c-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

@media (min-width: 768px) {
    .card {
        padding: 2.5rem;
    }
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .calculator-form {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-group-full {
        grid-column: span 2;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-text);
}

.form-input {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--c-border);
    border-radius: var(--r-small);
    background-color: #FFFFFF;
    color: var(--c-text);
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--c-purple);
    box-shadow: 0 0 0 3px rgba(83, 74, 183, 0.1);
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    cursor: pointer;
    margin-top: 0.25rem;
}

.form-checkbox-label input {
    accent-color: var(--c-purple);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--c-text-hint);
    margin-top: -0.25rem;
}

/* Przyciski (Buttons) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--r-small);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--c-purple);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--c-purple-dark);
    color: #FFFFFF;
}

.btn-mint {
    background-color: var(--c-mint);
    color: var(--c-forest-dark);
}

.btn-mint:hover {
    background-color: #8cd0ba;
    color: var(--c-forest-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #FFFFFF;
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    color: #FFFFFF;
}

.btn-full {
    width: 100%;
}

/* 8. SEKCJA WYNIKÓW (Dynamiczna) */
.result-section {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-main-card {
    background: linear-gradient(135deg, var(--c-purple-light) 0%, #FFFFFF 100%);
    border-left: 4px solid var(--c-purple);
    margin-bottom: 1.5rem;
}

.result-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.result-title-group h3 {
    font-size: 1.75rem;
    color: var(--c-purple-dark);
}

.result-badge-type {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Pasek postępu poznania siebie */
.progress-container {
    background-color: var(--c-bg-soft);
    border-radius: var(--r-small);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.progress-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.progress-bar-bg {
    background-color: rgba(0,0,0,0.05);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    background-color: var(--c-purple);
    height: 100%;
    width: 35%;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

/* Mini statystyki wyniku */
.result-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .result-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-box {
    background-color: var(--c-bg-card);
    border: 1px solid var(--c-border);
    padding: 1rem;
    border-radius: var(--r-small);
}

.stat-box-label {
    font-size: 0.8rem;
    color: var(--c-text-hint);
    margin-bottom: 0.25rem;
}

.stat-box-value {
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA Zamówienia Pełnego Raportu */
.cta-report-box {
    background-color: var(--c-sidebar);
    color: #FFFFFF;
    padding: 1.5rem;
    border-radius: var(--r-card);
    text-align: center;
}

.cta-report-box h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cta-report-box p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

/* 9. SIATKA PIĘCIU TYPÓW ENERGETYCZNYCH */
.types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .types-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.type-card {
    background-color: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-card);
    padding: 1.25rem;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.type-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.type-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.type-card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.type-card-title {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.type-card-desc {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

/* Klasy specyficzne dla typów w siatce */
.card-gen { border-top: 3px solid var(--c-gen); }
.card-gen .type-card-icon { background-color: var(--c-gen-bg); color: var(--c-gen); }

.card-mg { border-top: 3px solid var(--c-mg); }
.card-mg .type-card-icon { background-color: var(--c-mg-bg); color: var(--c-mg); }

.card-proj { border-top: 3px solid var(--c-proj); }
.card-proj .type-card-icon { background-color: var(--c-proj-bg); color: var(--c-proj); }

.card-manif { border-top: 3px solid var(--c-manif); }
.card-manif .type-card-icon { background-color: var(--c-manif-bg); color: var(--c-manif); }

.card-refl { border-top: 3px solid var(--c-refl); }
.card-refl .type-card-icon { background-color: var(--c-refl-bg); color: var(--c-refl); }

/* 10. ROZWIJANE FAQ POD ODPRAWE AI (ACCORDION) */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-small);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1rem 1.25rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question i {
    color: var(--c-text-hint);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: rgba(0,0,0,0.01);
}

.faq-answer-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.95rem;
    color: var(--c-text-muted);
}

/* Stan aktywny akordeonu FAQ */
.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--c-purple);
}

/* 11. DOLNA SEKCJA: BLOG + O MNIE (DWIE KOLUMNY) */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .bottom-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.blog-featured-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--c-text-hint);
    margin-bottom: 0.5rem;
}

.about-me-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--c-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--c-purple);
    border: 2px solid var(--c-border);
}

.about-info h4 {
    font-size: 1.1rem;
}

.about-info p {
    font-size: 0.85rem;
    color: var(--c-text-hint);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--c-border);
}

.social-links a {
    color: var(--c-text-muted);
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--c-purple);
}

/* 12. STOPKA (FOOTER) */
.site-footer {
    background-color: var(--c-forest-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-motto {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-meta {
        align-items: flex-end;
        text-align: right;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--c-mint);
}

/* Przełącznik języków */
.lang-switcher {
    display: inline-flex;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: var(--r-small);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn.active {
    background-color: var(--c-mint);
    color: var(--c-forest-dark);
}

.lang-btn:hover:not(.active) {
    color: #FFFFFF;
}

/* 13. POMOCNICZE KLASY UTILITY */
.text-muted { color: var(--c-text-muted); }
.text-hint { color: var(--c-text-hint); }
.text-purple { color: var(--c-purple); }
.text-mint { color: var(--c-mint); }
/* =================================================================
   MOTYW CIEMNY — żywe tło + poprawki kontrastu
   Dodane na końcu pliku, więc nadpisuje wcześniejsze reguły.
   ================================================================= */

/* Tło całej strony: pionowy gradient rozciągnięty na całą wysokość
   dokumentu, więc kolory PRZECHODZĄ płynnie w miarę scrollowania
   (las → indygo → las → indygo). Bez JS, bez animacji — czysty CSS. */
body {
    background-color: #0a1810;
    background-image: linear-gradient(
        180deg,
        #0a1810 0%,
        #131029 24%,
        #0b1e14 48%,
        #161130 74%,
        #0a1810 100%
    );
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* Pola formularza na ciemnym tle (zamiast białych) */
.form-input {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--c-text);
    border-color: var(--c-border);
}
.form-input::placeholder { color: var(--c-text-hint); }
.form-input:focus { border-color: var(--c-purple); }

/* Aktywny / najechany element menu bocznego — widoczne podświetlenie */
.menu-link:hover, .menu-link.active {
    background-color: rgba(255, 255, 255, 0.07);
    color: var(--c-text);
}

/* Główny kafelek wyniku — ciemny gradient zamiast biało-fioletowego */
.result-main-card {
    background: linear-gradient(135deg, rgba(83, 74, 183, 0.28) 0%, rgba(23, 20, 36, 0.92) 100%);
    border-left: 4px solid var(--c-purple);
}
.result-title-group h3 { color: #C7C1F5; }

/* Drobne odznaki i awatar „O mnie" — jasny fiolet zamiast ciemnego */
.badge { color: #C7C1F5; }
.about-avatar { color: #C7C1F5; }

/* Poświata kart przy najechaniu (cień ginie w ciemności, więc dajemy blask) */
.type-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    border-color: rgba(159, 225, 203, 0.30);
}

/* Telefon: chowamy mały przycisk w nagłówku hero (nachodził na logo).
   Główny przycisk CTA jest tuż niżej w sekcji hero, więc nic nie tracimy. */
@media (max-width: 767px) {
    .hero-nav .btn-mint { display: none; }
}