/* =========================================
   Zmienne i ustawienia globalne
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

:root {
    --main-color: #9D4EDD; 
    --main-color-hover: #C77DFF; 
    --main-color-glow: rgba(157, 78, 221, 0.4);
    
    --bg-dark: #07040a; 
    --bg-card: rgba(13, 10, 15, 0.6); 
    
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.08);
}

body {
    position: relative;
    background-color: var(--bg-dark);
    /* Delikatna siatka w tle */
    background-image: 
        linear-gradient(rgba(157, 78, 221, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 221, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    background-attachment: scroll; 
    
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   Nawigacja
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: padding 0.4s ease, background-color 0.4s ease, backdrop-filter 0.4s ease;
    opacity: 0;
    transform: translateY(-20px);
}

.page-loaded .navbar {
    animation: navFadeInDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes navFadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar.scrolled {
    padding: 12px 5%;
    background-color: rgba(7, 4, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 16px; 
    position: relative;
    z-index: 1001;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.logo:hover {
    transform: scale(1.03);
    text-shadow: 0 0 25px rgba(157, 78, 221, 0.4);
}

.brand-logo {
    height: 65px; 
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(157, 78, 221, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .brand-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(157, 78, 221, 0.8));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled .nav-links {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-links a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 100px;
    transition: color 0.3s ease, background-color 0.3s ease, text-shadow 0.3s ease;
    z-index: 1;
}

.nav-links a:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-links a.active {
    color: #ffffff;
    background-color: var(--main-color);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
    color: var(--main-color);
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.navbar .login-btn {
    border-radius: 100px;
}

/* =========================================
   Przyciski
   ========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--main-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.25);
}

.btn-primary:hover {
    background-color: var(--main-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 125, 255, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(157, 78, 221, 0.1);
    border-color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.2);
}

/* =========================================
   TŁO - Nowoczesne prześwity kolorów (Aurora / Light Leaks)
   ========================================= */
.background-effects {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.background-effects::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -15%;
    width: 50vw;
    height: 70vh;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(90px); 
}

.background-effects::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.22) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(100px);
}

.glow-spot.g1 {
    display: block !important;
    position: absolute;
    bottom: -15%;
    right: 15%;
    width: 45vw;
    height: 45vh;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(100px);
    animation: none; 
}

.glow-spot.g2, .glow-spot.g3, .glow-spot.g4, .glow-spot.g5, .floating-shapes, .shape, .loader-glow-bg, .hero-glow {
    display: none !important;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 100px 20px 40px;
    z-index: 2;
    overflow: visible; 
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-badge {
    position: relative;
    z-index: 2;
    background-color: rgba(157, 78, 221, 0.12);
    color: #CB85FF; 
    border: 1px solid rgba(157, 78, 221, 0.3);
    padding: 8px 24px 8px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.15);
}

.page-loaded .hero-badge {
    animation: heroFadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.1s;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: #CB85FF;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 8px #CB85FF, 0 0 12px rgba(203, 133, 255, 0.6);
}

/* NOWE STYLOWANIE DLA ZDJĘCIA HERO.PNG */
.hero-main-image {
    position: relative;
    z-index: 1; /* Ustawione pod napisami */
    width: 100%;
    max-width: 600px; 
    height: auto;
    margin-bottom: -75px; /* Sprawia, że teksty podjeżdżają ok 2cm do góry i nachodzą na obraz */
    opacity: 0;
    transform: translateY(20px);
    filter: drop-shadow(0 10px 25px rgba(157, 78, 221, 0.3)); 
}

.page-loaded .hero-main-image {
    animation: heroFadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.15s; 
}

.hero-title {
    position: relative;
    z-index: 2;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.page-loaded .hero-title {
    animation: heroFadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 680px;
    margin-bottom: 40px;
    line-height: 1.7;
    position: relative;
    z-index: 4;
    opacity: 0;
    transform: translateY(20px);
}

.page-loaded .hero-subtitle {
    animation: heroFadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.35s;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 4;
    opacity: 0;
    transform: translateY(20px);
}

.page-loaded .hero-buttons {
    animation: heroFadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    width: 260px;
    justify-content: center;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   Zalety (Features / Specjalizacja)
   ========================================= */
.features {
    display: flex;
    justify-content: center;
    align-content: center; 
    flex-wrap: wrap;
    gap: 25px;
    padding: 80px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 90px); 
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    transition: transform 0.4s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.03);
    border-color: rgba(157, 78, 221, 0.5);
    background-color: rgba(13, 10, 15, 0.8); 
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.12); 
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(157, 78, 221, 0.1);
    color: var(--main-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: transform 0.4s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background-color: var(--main-color);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4); 
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   Skrypty
   ========================================= */
.featured-scripts {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 90px); 
    display: flex;                  
    flex-direction: column;         
    justify-content: center;        
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(157, 78, 221, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.12);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.framework-tags {
    display: flex;
    gap: 8px;
}

.framework-tags .tag {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* =========================================
   Prace Graficzne
   ========================================= */
.graphics-showcase {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 90px); 
    display: flex;                  
    flex-direction: column;         
    justify-content: center;        
}

.graphics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.graphic-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    aspect-ratio: 16 / 9;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.graphic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.graphic-card:hover {
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.15);
    border-color: rgba(157, 78, 221, 0.4);
}

.graphic-card:hover img {
    transform: scale(1.08);
}

.graphic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 4, 10, 0.95) 0%, rgba(7, 4, 10, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.graphic-card:hover .graphic-overlay {
    opacity: 1;
}

.graphic-overlay span {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.15rem;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.graphic-card:hover .graphic-overlay span {
    transform: translateY(0);
}

/* =========================================
   FAQ
   ========================================= */
.faq {
    padding: 100px 5%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 90px); 
    display: flex;                  
    flex-direction: column;         
    justify-content: center;        
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px 30px;
    border-radius: 16px;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background-color: rgba(255,255,255,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--main-color);
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

.faq-item.active {
    border-color: rgba(157, 78, 221, 0.5);
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.08);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.faq-item.active .faq-answer {
    opacity: 1;
}

/* =========================================
   Sekcja Kontaktowa - MONOLIT
   ========================================= */
.contact-section {
    padding: 20px 5% 80px; 
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 90px); 
    display: flex;
    align-items: center; 
    justify-content: center;
}

.contact-monolith {
    width: 100%; 
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
}

.monolith-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dev-status {
    background-color: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e, 0 0 12px rgba(34, 197, 94, 0.4);
}

.status-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.monolith-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.monolith-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.quick-contact-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    width: 280px; 
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.quick-pill i:first-child {
    color: var(--main-color);
    font-size: 1.1rem;
    transition: text-shadow 0.3s ease;
}

.quick-pill:hover {
    border-color: rgba(157, 78, 221, 0.5);
    background-color: rgba(157, 78, 221, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.2);
}

.quick-pill:hover i:first-child {
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.monolith-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(7, 4, 10, 0), rgba(255, 255, 255, 0.05), rgba(7, 4, 10, 0));
    margin: 45px 0;
}

.monolith-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-solid {
    position: relative;
    background-color: rgba(0, 0, 0, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-solid:focus-within {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: var(--main-color);
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.2);
}

.input-solid input,
.input-solid textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 26px 20px 10px 20px; 
    color: #fff;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.input-solid textarea {
    resize: vertical;
    min-height: 120px;
}

.input-solid label {
    position: absolute;
    left: 20px;
    top: 18px; 
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    pointer-events: none;
    transform-origin: left top;
    transition: transform 0.2s ease, color 0.2s ease;
}

.input-solid input:focus ~ label,
.input-solid input:not(:placeholder-shown) ~ label,
.input-solid textarea:focus ~ label,
.input-solid textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-10px) scale(0.8);
    color: var(--main-color);
    font-weight: 600;
}

.monolith-submit-btn {
    margin-top: 10px;
    background-color: var(--main-color);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.25);
}

.monolith-submit-btn i {
    transition: transform 0.3s ease;
}

.monolith-submit-btn:hover {
    background-color: var(--main-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 125, 255, 0.45);
}

.monolith-submit-btn:hover i {
    transform: translateX(5px) translateY(-5px);
}

/* =========================================
   Stopka (Footer)
   ========================================= */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 5% 40px;
    background: linear-gradient(to bottom, rgba(7, 4, 10, 0.8), #000000);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.footer-brand {
    max-width: 380px;
}

.footer-brand .logo {
    font-size: 28px;
    margin-bottom: 20px;
    cursor: default;
}

.footer-brand .logo:hover {
    transform: none;
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    font-size: 1.2rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.social-links a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
}

.footer-links {
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
}

.link-column h4 {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.link-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--main-color);
    border-radius: 2px;
    transition: width 0.3s ease, box-shadow 0.3s ease;
}

.link-column:hover h4::after {
    width: 100%;
    box-shadow: 0 0 8px rgba(157, 78, 221, 0.6);
}

.link-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 18px;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.link-column a:hover {
    color: var(--text-main);
    transform: translateX(8px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom .disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   Powiadomienia Dymkowe (Toasts)
   ========================================= */
#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background-color: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    box-shadow: none; 
    
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: #22c55e;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* =========================================
   Wypełnienie pustej przestrzeni (Kreski - teraz jak neony)
   ========================================= */
.hero::after,
.features::after,
.featured-scripts::after,
.graphics-showcase::after,
.faq-section::after,
.rules-section::after,
.team-section::after {
    content: '';
    position: absolute;
    bottom: 20px; /* Domyślna wartość */
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(157, 78, 221, 0) 0%, rgba(157, 78, 221, 0.5) 50%, rgba(157, 78, 221, 0) 100%);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3); /* Miękka poświata wokół kreski */
    z-index: 5;
    pointer-events: none;
}

/* Dokładne pozycjonowanie kresek, by idealnie wchodziły między sekcje */
.hero::after { bottom: -98px; } 
.team-section::after { bottom: -60px; }
.rules-section::after { bottom: -60px; }
.faq-section::after { bottom: -20px; }
/* KLUCZOWA ZMIANA: Zmieniono z -20px na -40px, by linia zeszła trochę niżej */
.featured-scripts::after { bottom: -70px; }

/* =========================================
   Responsywność (Media Queries)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98); 
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 992px) {
    .hero-title { font-size: 4rem; }
    .hero { padding-top: 160px; }
    .footer-links { gap: 50px; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(7, 4, 10, 0.96);
        flex-direction: column;
        padding: 100px 5% 40px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.5s ease;
    }

    .nav-links.show {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 15px;
        background-color: transparent;
        box-shadow: none;
    }

    .nav-links a.active {
        background-color: rgba(157, 78, 221, 0.15);
        border: 1px solid rgba(157, 78, 221, 0.4);
        box-shadow: inset 0 0 15px rgba(157, 78, 221, 0.1);
    }

    .login-btn { display: none; }
    
    .hero-title { font-size: 3.2rem; }
    
    .hero-main-image { 
        max-width: 90%; /* Lepiej skaluje postać na telefonach */
    } 

    .hero-subtitle { font-size: 1.05rem; }
    .hero-subtitle br { display: none; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    
    .feature-card { min-width: 100%; }
    
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-links { gap: 50px; flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
    
    .contact-monolith {
        padding: 40px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .monolith-header h2 {
        font-size: 2.2rem;
    }
    .quick-contact-pills {
        flex-direction: column;
        width: 100%;
    }
    .quick-pill {
        width: 100%;
        justify-content: center;
    }

    #toast-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
        align-items: center;
    }
    
    .shop-safety-notice {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   Loading Screen
   ========================================= */
.loading-screen {
   /* ... usuń to wszystko ... */
}

/* ... aż do tego miejsca włącznie: */
@keyframes loadProgress {
    0% { width: 0%; }
    40% { width: 40%; }
    70% { width: 80%; }
    100% { width: 100%; }
}

/* =========================================
   Zarząd Serwera (Nowy Team Panel)
   ========================================= */
.team-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* KLUCZOWA ZMIANA: Wymusza dokładnie 4 równe kolumny w jednej linii */
    gap: 30px;
    width: 100%;
}

/* Zabezpieczenie dla tabletów - łamie na 2 osoby w rzędzie */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Zabezpieczenie dla telefonów - łamie na 1 osobę w rzędzie */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* KLUCZOWA ZMIANA: Dodano opacity do listy transition, aby nie psuć animacji .reveal */
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(157, 78, 221, 0.5);
    box-shadow: 0 15px 35px rgba(157, 78, 221, 0.15);
}

.team-banner {
    height: 100px;
    width: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(7, 4, 10, 0) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.team-avatar {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    margin: 45px auto 15px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--main-color), transparent);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 3px solid var(--bg-dark);
}

.team-content {
    padding: 0 25px 35px;
    position: relative;
    z-index: 2;
}

.team-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.team-role {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--main-color);
    background-color: rgba(157, 78, 221, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.team-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   SKLEP SERWEROWY - PERFECT ALIGNMENT
   ========================================= */

/* 1. Siatka i Filtry */
.shop-filters-ui {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-ui-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 24px;
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-ui-btn.active, .filter-ui-btn:hover {
    background: rgba(157, 78, 221, 0.15);
    border-color: var(--main-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    width: 100%;
}

/* 2. Karty (Flexbox zapewnia równą wysokość i przyciski na dole) */
.shop-card {
    background: linear-gradient(145deg, rgba(15, 12, 18, 0.8) 0%, rgba(7, 4, 10, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Elementy układają się od góry */
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%; /* Rozciąga kartę w siatce Grid */
}

.shop-card:hover {
    transform: translateY(-8px);
    border-color: var(--main-color);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.15), inset 0 0 20px rgba(157, 78, 221, 0.05);
}

/* 3. Karty Premium (Masterpiece) - Jednorodny styl, bez zółtego */
.masterpiece-card {
    position: relative;
    border-color: rgba(157, 78, 221, 0.5);
    background: linear-gradient(145deg, rgba(25, 15, 35, 0.9) 0%, rgba(10, 5, 15, 0.95) 100%);
}

.masterpiece-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

.masterpiece-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 140px;
    color: rgba(157, 78, 221, 0.04);
    z-index: -1;
    transform: rotate(-15deg);
    transition: transform 0.5s ease;
}

.masterpiece-card:hover .masterpiece-bg-icon {
    transform: rotate(0deg) scale(1.1);
    color: rgba(157, 78, 221, 0.08);
}

/* 4. Badges (Przypinki na kartach) */
.card-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--main-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 30px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(157, 78, 221, 0.3);
}

.card-badge.info { background-color: #3b82f6; box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3); }

.pulse-badge { animation: badgePulse 2s infinite; }
@keyframes badgePulse {
    0% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(45deg) scale(1.05); }
    100% { transform: rotate(45deg) scale(1); }
}

/* 5. Zawartość kart (Nagłówek, Tytuł, Cena, Opis) */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-top: 10px;
}

.shop-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-title i { color: var(--main-color); }

.shop-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--main-color);
    background-color: rgba(157, 78, 221, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    box-shadow: 0 2px 10px rgba(157, 78, 221, 0.1);
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.shop-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 6. Listy korzyści (Checkmarki) - Klucz do wyrównania przycisków! */
.shop-features-list {
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    flex-grow: 1; /* To wypycha przycisk do samego dołu */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.shop-features-list li {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.shop-features-list li:last-child {
    margin-bottom: 0;
}

.shop-features-list li i { color: var(--main-color); font-size: 0.9rem; margin-top: 3px; }

/* 7. Przyciski zakupowe - ujednolicone wielkości */
.shop-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 16px; /* Zwiększony jednolity padding dla wszystkich */
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    margin-top: auto; /* Trzyma przycisk na samym dole */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-btn:hover {
    background-color: rgba(157, 78, 221, 0.1);
    border-color: var(--main-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.2);
}

/* Wyróżniony przycisk (dla kart Masterpiece) */
.shop-btn.glow-btn {
    background-color: var(--main-color);
    border: none;
}

.shop-btn.glow-btn:hover {
    background-color: var(--main-color-hover);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
}

/* 8. Baner Bezpieczeństwa */
.shop-safety-notice {
    background: linear-gradient(90deg, rgba(157, 78, 221, 0.05) 0%, rgba(7, 4, 10, 0.5) 100%);
    border-left: 4px solid var(--main-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.age-warning {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 15px;
    color: #fca5a5;
    font-size: 0.9rem;
}

.age-warning i { color: #ef4444; margin-right: 5px; }

/* 9. Poprawka dla telefonów */
@media (max-width: 768px) {
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* =========================================
   UKRYWANIE KART I ANIMACJA
   ========================================= */
.shop-card.hidden {
    display: none !important;
}

.shop-card {
    animation: fadeInCard 0.4s ease forwards;
}

@keyframes fadeInCard {
    from { opacity: 0; transform: scale(0.95) translateY(15px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* =========================================
   FAQ (Często Zadawane Pytania)
   ========================================= */
.faq-section {
    padding: 140px 5% 100px; /* Zwiększony padding u góry, by zastąpić centrowanie */
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* KLUCZOWA ZMIANA: to powstrzymuje skakanie sekcji */
}

.faq-container {
    margin-top: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px 30px;
    border-radius: 16px;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background-color: rgba(25, 15, 35, 0.4);
    border-color: rgba(157, 78, 221, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--main-color);
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    line-height: 1.7;
}

/* Aktywny stan FAQ (Po rozwinięciu) */
.faq-item.active {
    border-color: rgba(157, 78, 221, 0.5);
    background: linear-gradient(145deg, rgba(20, 15, 25, 0.8) 0%, rgba(10, 5, 15, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.15);
}

.faq-item.active .faq-question h3 {
    color: var(--main-color-hover);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.6);
}

.faq-item.active .faq-answer {
    opacity: 1;
}

/* =========================================
   Regulamin (Rules)
   ========================================= */
.rules-section {
    padding: 100px 5% 60px; /* Zmniejszyłem dolny padding, by po zwinięciu sekcja była zgrabna */
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: auto; /* KLUCZOWA ZMIANA: Pozwala sekcji skurczyć się po ukryciu tekstu */
    display: flex;
    flex-direction: column;
}

.rules-container {
    display: none; /* Domyślnie ukrywa regulamin */
    flex-direction: column;
    gap: 30px;
    margin-top: 40px; /* Dodaje ładny odstęp między przyciskiem a tekstem po rozwinięciu */
}

.rules-container.show {
    display: flex; /* Pokazuje regulamin po kliknięciu */
    animation: fadeInCard 0.5s ease forwards;
}

.rule-block {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.rule-block:hover {
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.1);
}

.rule-block h3 {
    color: var(--main-color-hover);
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rule-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.rule-content p strong {
    color: var(--text-main);
    font-weight: 600;
}

.rule-content ul {
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.rule-content ul li {
    margin-bottom: 5px;
}

.punishment-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
    list-style-type: none;
    margin-left: 0 !important;
}

.punishment-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--main-color);
}

.terms-list p {
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.terms-list p:last-child {
    border-bottom: none;
}