/* Import czcionek Outfit oraz Inter z Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Zmienne systemowe (Design Tokens) --- */
:root {
    --bg-black-oled: #030303;
    --bg-dark-gray: #0b0b0f;
    --bg-card: rgba(18, 18, 24, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-glow: rgba(0, 85, 255, 0.3);
    
    --primary-blue: #0052ff;
    --primary-blue-glow: rgba(0, 82, 255, 0.5);
    --secondary-cyan: #00d2ff;
    --text-white: #ffffff;
    --text-muted: #8f9cae;
    --text-dark: #4a5568;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --container-width: 1200px;
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
}

/* --- Resety i ustawienia bazowe --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
    background-color: var(--bg-black-oled);
    color: var(--text-white);
    font-family: var(--font-body);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    background: radial-gradient(circle at 50% 0%, rgba(0, 82, 255, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 100% 40%, rgba(0, 210, 255, 0.03) 0%, transparent 40%),
                var(--bg-black-oled);
}

/* --- Typografia --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* --- Klasy pomocnicze (Utilities) --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, var(--secondary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-blue-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 30px;
    background: rgba(0, 82, 255, 0.1);
    color: var(--secondary-cyan);
    border: 1px solid rgba(0, 210, 255, 0.25);
    margin-bottom: 1.5rem;
}

/* --- Nagłówek (Sticky Navbar) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(3, 3, 3, 0.9);
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 82, 255, 0.35));
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.6));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-link {
    color: var(--text-muted);
    background: transparent;
}

.btn-link:hover {
    color: var(--text-white);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003cc2 100%);
    color: var(--text-white);
    box-shadow: 0 4px 20px var(--primary-blue-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 82, 255, 0.7), 0 0 10px var(--secondary-cyan);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--secondary-cyan);
    background: rgba(0, 210, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
    transform: translateY(-2px);
}

/* Hamburgermenu */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition-fast);
    background-color: var(--text-white);
    border-radius: 2px;
}

/* --- Sekcja HERO --- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cyber-element w HERO */
.cyber-sphere-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
}

.cyber-sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.4) 0%, rgba(0, 210, 255, 0.1) 100%);
    border: 2px solid var(--secondary-cyan);
    box-shadow: 0 0 40px rgba(0, 82, 255, 0.3), inset 0 0 30px rgba(0, 210, 255, 0.2);
    animation: morphing 10s ease-in-out infinite alternate, spin 20s linear infinite;
}

.cyber-sphere-inner {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 210, 255, 0.8) 0%, rgba(0, 82, 255, 0.2) 60%, transparent 100%);
    box-shadow: 0 0 50px var(--primary-blue-glow);
    filter: blur(10px);
    animation: pulse 4s ease-in-out infinite alternate;
}

.cyber-badge-floating {
    position: absolute;
    background: rgba(11, 11, 15, 0.85);
    border: 1px solid var(--border-color-glow);
    backdrop-filter: blur(10px);
    padding: 0.85rem 1.25rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 82, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
}

.cb-1 {
    top: 10%;
    left: -15%;
    animation: float 5s ease-in-out infinite;
}

.cb-2 {
    bottom: 10%;
    right: -10%;
    animation: float 6s ease-in-out infinite 1s;
}

.floating-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-cyan);
    box-shadow: 0 0 10px var(--secondary-cyan);
}

.floating-dot.blue {
    background-color: var(--primary-blue);
    box-shadow: 0 0 10px var(--primary-blue);
}

/* --- Sekcje Ogólne --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4.5rem;
}

.section-header p {
    font-size: 1.05rem;
}

/* --- CENNIK --- */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.toggle-label {
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.toggle-label.active {
    color: var(--text-white);
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--text-white);
    top: 2px;
    left: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.pricing-toggle.active .toggle-switch {
    background: var(--primary-blue);
}

.pricing-toggle.active .toggle-switch::after {
    left: calc(100% - 22px);
    background-color: var(--text-white);
}

.discount-badge {
    background: rgba(0, 210, 255, 0.15);
    color: var(--secondary-cyan);
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 82, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 82, 255, 0.1);
}

.pricing-card.popular {
    border-color: var(--primary-blue);
    background: linear-gradient(180deg, rgba(0, 82, 255, 0.05) 0%, rgba(18, 18, 24, 0.6) 100%);
    box-shadow: 0 15px 35px rgba(0, 82, 255, 0.15);
}

.pricing-card.popular::before {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-cyan));
    color: var(--bg-black-oled);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px var(--primary-blue-glow);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-price-box {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    transition: var(--transition-fast);
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-white);
}

.pricing-features li.disabled {
    color: var(--text-dark);
}

.pricing-features li::before {
    content: '✓';
    color: var(--secondary-cyan);
    font-weight: 700;
    font-size: 1rem;
}

.pricing-features li.disabled::before {
    content: '✗';
    color: var(--text-dark);
}

.pricing-card .btn {
    width: 100%;
}

/* --- PORÓWNANIE (Comparison Table) --- */
.comparison-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1px;
    overflow-x: auto;
    backdrop-filter: blur(12px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 700px;
}

.comparison-table th, .comparison-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
    font-size: 0.95rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    font-weight: 600;
    color: var(--text-white);
    max-width: 250px;
}

.comparison-table .feature-subtext {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.25rem;
}

.comparison-table .col-goatly {
    background: rgba(0, 82, 255, 0.03);
    font-weight: 600;
    text-align: center;
}

.comparison-table .col-other {
    color: var(--text-muted);
    text-align: center;
}

.table-check {
    color: var(--secondary-cyan);
    font-weight: 700;
    font-size: 1.2rem;
}

.table-cross {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- OCENY KLIENTÓW --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-glow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.review-stars {
    color: var(--secondary-cyan);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-white);
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--bg-black-oled);
    box-shadow: 0 0 10px rgba(0, 82, 255, 0.2);
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- FOOTER --- */
.footer {
    background-color: var(--bg-dark-gray);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 250px;
}

.footer-links-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.75rem;
    color: var(--text-white);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links-col a:hover {
    color: var(--secondary-cyan);
    padding-left: 4px;
}

.footer-newsletter h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(0, 82, 255, 0.2);
}

.newsletter-form .btn {
    padding: 0.75rem 1.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copy {
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.social-link:hover {
    color: var(--secondary-cyan);
}

/* --- SELEKTORY ZAKŁADEK CENNIKA --- */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 4rem;
    flex-wrap: wrap;
    max-width: 600px;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.95rem 1.85rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tab-btn:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    color: var(--text-white);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.15), rgba(0, 210, 255, 0.05));
    box-shadow: 0 0 25px rgba(0, 82, 255, 0.25), 0 0 10px rgba(0, 210, 255, 0.1);
}

.cpu-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.cpu-tab-btn:hover {
    color: var(--text-white);
}

.cpu-tab-btn.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003cc2 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.4);
}

.pricing-section-content {
    display: none;
}

.pricing-section-content.active {
    display: grid;
    animation: tabFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ (Accordion) */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    user-select: none;
}

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    color: var(--secondary-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: 0 1.5rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--border-color-glow);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* --- SZABLONY BŁĘDÓW (404 / 500) --- */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: radial-gradient(circle at center, rgba(0, 82, 255, 0.1) 0%, var(--bg-black-oled) 70%);
}

.error-container {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.error-code {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -0.05em;
    position: relative;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(0, 82, 255, 0.3);
}

/* Animacja błędu 404 */
.floating-astronaut {
    width: 150px;
    height: 150px;
    position: relative;
    animation: float-astro 6s ease-in-out infinite;
    margin-bottom: 1rem;
}

.floating-astronaut svg {
    width: 100%;
    height: 100%;
    fill: var(--text-white);
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.4));
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
}

.error-text {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.status-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s infinite;
}

/* --- ANIMACJE CSS --- */
@keyframes morphing {
    0% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    }
    100% {
        border-radius: 65% 35% 38% 62% / 60% 64% 36% 40%;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes float-astro {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(8deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* --- EFEKTY POJAWIANIA SIĘ NA SCROLL (Fade-in on scroll) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE DESIGN (Media Queries) --- */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .pricing-card.popular {
        grid-column: span 2;
        order: -1; /* Wyróżniony na górę */
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .vps-calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-black-oled);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        padding-top: 3rem;
        z-index: 999;
        gap: 2.5rem;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: none; /* Ukryj akcje na mobilnym */
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        grid-column: span 1;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
