/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: #1a1a1a;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

body {
    font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 800px 400px at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 80% 20%, rgba(139, 92, 246, 0.02) 0%, transparent 70%),
        radial-gradient(ellipse 1000px 500px at 40% 40%, rgba(6, 182, 212, 0.015) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nawigacja */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 20px;
}

.navbar.scrolled {
    background: transparent;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: all 0.3s ease;
}

.nav-container.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 800px 400px at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 600px 300px at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 1000px 500px at 50% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 400px 200px at 10% 90%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    z-index: 1;
    animation: heroGradient 20s ease-in-out infinite;
}

@keyframes heroGradient {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(1deg);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(255, 255, 255, 0.8) 50%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Banner */
.hero-banner {
    max-width: 1600px;
    width: 1600px;
    margin: 0 auto 40px;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.08) 0%,
        rgba(139, 92, 246, 0.06) 25%,
        rgba(6, 182, 212, 0.05) 50%,
        rgba(236, 72, 153, 0.04) 75%,
        rgba(99, 102, 241, 0.08) 100%
    );
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 24px;
    padding: 120px 60px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: visible;
    left: 50%;
    transform: translateX(-50%);
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 600px 300px at 20% 30%, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.08) 40%, transparent 70%),
        radial-gradient(ellipse 500px 250px at 80% 70%, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.06) 50%, transparent 75%),
        radial-gradient(ellipse 400px 200px at 50% 50%, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.05) 45%, transparent 70%);
    z-index: 1;
    filter: blur(1px);
    animation: bannerGlow 12s ease-in-out infinite;
}

@keyframes bannerGlow {
    0%,
    100% {
        transform: translateX(-2%) translateY(-1%);
        opacity: 0.9;
    }

    33% {
        transform: translateX(1%) translateY(1%);
        opacity: 1;
    }

    66% {
        transform: translateX(-1%) translateY(-0.5%);
        opacity: 0.95;
    }
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding-right: 380px;
}

.banner-text {
    flex: 1;
    text-align: left;
}

.banner-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-slug {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 600px;
    margin: 0;
}

.banner-image {
    flex-shrink: 0;
    position: absolute;
    bottom: 0;
    right: 60px;
    width: 320px;
    height: 0;
    z-index: 2;
}

.banner-image img {
    width: 320px;
    height: 540px;
    object-fit: cover;
    border-radius: 16px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    box-shadow: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

/* Partnerzy */
.partners-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 120px auto 120px;
    max-width: 1000px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.partner-item {
    transition: all 0.3s ease;
    opacity: 0.7;
    filter: grayscale(100%) brightness(0.8);
}

.partner-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: translateY(-5px);
}

.partner-item img {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Sekcja z obrazkiem */
.image-section {
    padding: 80px 0;
}

.image-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.image-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.image-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Sekcja CTA */
.action-section {
    padding: 100px 0;
    position: relative;
}

.action-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.action-text {
    flex: 1;
    text-align: left;
}

.action-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.action-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.action-button {
    flex-shrink: 0;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 16px;
}

/* Sekcja z tekstem i obrazkiem */
.text-image-section {
    padding: 120px 0;
    margin: 80px 0;
    position: relative;
    background-image: url("/media/student-5.png");
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.text-image-content {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.text-side {
    flex: 0 0 50%;
    max-width: 600px;
    text-align: left;
    padding-right: 3rem;
}

.main-text {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.sub-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.image-side {
    display: none;
}

/* Sekcja full width */
.fullwidth-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

.fullwidth-item {
    width: 100%;
    padding: 80px 0;
    position: relative;
    transition: all 0.5s ease;
    border-bottom: 1px solid var(--border-color);
}

.fullwidth-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.fullwidth-item[data-bg]:hover::before {
    opacity: 0.15;
}

.fullwidth-item:hover::before {
    opacity: 0.15;
}

.fullwidth-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.fullwidth-text {
    text-align: left;
}

.fullwidth-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.fullwidth-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

.fullwidth-button {
    flex-shrink: 0;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
}

.feature {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%),
        radial-gradient(ellipse 200px 100px at 50% 50%, rgba(6, 182, 212, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-secondary), var(--bg-tertiary)) padding-box,
        linear-gradient(135deg, rgba(99, 102, 241, 0.6) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(6, 182, 212, 0.6) 100%) border-box;
}

.feature:hover::before {
    opacity: 1;
}

.feature > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature p {
    color: var(--text-secondary);
}

/* Sekcje */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Jak to dzia�a */
.how-it-works {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 600px 300px at 30% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 500px 250px at 70% 30%, rgba(6, 182, 212, 0.025) 0%, transparent 60%);
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.step:nth-child(1) {
    animation-delay: 0.2s;
}

.step:nth-child(2) {
    animation-delay: 0.4s;
}

.step:nth-child(3) {
    animation-delay: 0.6s;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover .step-number::before {
    opacity: 1;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Statystyki */
.stats-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 700px 300px at 20% 80%, rgba(99, 102, 241, 0.025) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 80% 20%, rgba(6, 182, 212, 0.02) 0%, transparent 60%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.stat-item:nth-child(1) .stat-number {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) .stat-number {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) .stat-number {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) .stat-number {
    animation-delay: 0.4s;
}

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

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Dlaczego UniFinder */
.why-unifinder {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-unifinder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 800px 400px at 20% 80%, rgba(139, 92, 246, 0.025) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 80% 20%, rgba(99, 102, 241, 0.02) 0%, transparent 60%);
    z-index: 1;
}

.why-unifinder .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.5s;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%),
        radial-gradient(ellipse 200px 100px at 50% 50%, rgba(6, 182, 212, 0.01) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card > * {
    position: relative;
    z-index: 2;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Call to Action */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 1000px 500px at 50% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 800px 400px at 30% 70%, rgba(139, 92, 246, 0.025) 0%, transparent 60%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Lista uczelni */
.universities-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.universities-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 800px 400px at 20% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 80% 20%, rgba(99, 102, 241, 0.025) 0%, transparent 60%);
    z-index: 1;
}

.universities-section .container {
    position: relative;
    z-index: 2;
}

.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.filters::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%),
        radial-gradient(ellipse 300px 150px at 50% 50%, rgba(6, 182, 212, 0.01) 0%, transparent 70%);
    z-index: 1;
}

.filters > * {
    position: relative;
    z-index: 2;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.universities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.university-card {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.university-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.025) 0%, rgba(139, 92, 246, 0.025) 100%),
        radial-gradient(ellipse 250px 125px at 50% 50%, rgba(6, 182, 212, 0.015) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.university-card:hover::before {
    opacity: 1;
}

.university-card > * {
    position: relative;
    z-index: 2;
}

.university-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.university-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.university-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.university-rating::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.university-rating > * {
    position: relative;
    z-index: 2;
}

.university-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.university-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.university-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Quiz - Full Width Dark Design */
.quiz-section {
    min-height: 100vh;
    /* background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 50%,
    var(--bg-tertiary) 100%
  ); */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Quiz Start Container */
.quiz-start-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 0;
    overflow: visible;
    width: 100%;
}

.quiz-start-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    width: 100%;
    overflow: visible;
}

.quiz-start-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    overflow: visible;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quiz-start-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Quiz Start Button */
.quiz-start-content .btn {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 12px;
}

.quiz-container {
    position: relative;
    z-index: 2;
}

.question-container {
    margin-top: 10rem;
}

.quiz-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 700px 350px at 30% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 70% 30%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
    z-index: 1;
}

/* Progress Bar z ikonkami - sticky na g�rze */
.quiz-progress-bar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.progress-track {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.progress-line {
    height: 4px;
    background: var(--border-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 0.5s ease;
    width: var(--progress-width, 0%);
}

.progress-icons {
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.progress-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.progress-icon.completed {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.progress-icon.current {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.6);
}

.progress-icon svg {
    width: 16px;
    height: 16px;
}

.progress-info {
    text-align: center;
    margin-top: 1.5rem;
}

.progress-text {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* G��wny layout quiz - podzia� lewa/prawa */
.quiz-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 150px);
    position: relative;
    z-index: 2;
}

/* Lewa strona - Pytanie */
.quiz-left {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--border-color);
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    min-height: 100px;
}

.question-number {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.question-type {
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-type.location {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
}

.question-type.standard {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
}

.question-type.core {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.question-type.experimental {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

.question-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.question-description {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Prawa strona - Odpowiedzi */
.quiz-right {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.answer-option {
    padding: 1.75rem 2rem;
    background: rgba(17, 17, 17, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.answer-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.answer-option:hover {
    border-color: var(--primary-color);
    background: rgba(17, 17, 17, 1);
    transform: scale(1.01);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
}

.answer-option:hover::before {
    transform: scaleY(1);
}

.answer-option.selected {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
}

.answer-option.selected::before {
    transform: scaleY(1);
}

/* Nawigacja quiz */
.quiz-navigation {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.quiz-navigation .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
    font-size: 1rem;
}

.quiz-navigation .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.quiz-navigation .btn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.quiz-navigation .btn svg {
    transition: transform 0.3s ease;
}

.quiz-navigation .btn:hover svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .quiz-main {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .quiz-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 3rem 2rem;
    }

    .quiz-right {
        padding: 3rem 2rem;
    }

    .question-text {
        font-size: 2rem;
    }

    .progress-track {
        padding: 0 1rem;
    }

    .quiz-navigation {
        flex-direction: column;
    }

    .quiz-navigation .btn {
        min-width: auto;
    }

    .quiz-start-content h1 {
        font-size: 2.5rem;
        white-space: normal;
    }

    .quiz-start-description {
        font-size: 1.1rem;
    }

    .quiz-start-content .btn {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}

.answer-option > * {
    position: relative;
    z-index: 2;
}

.quiz-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Kontakt */
.contact-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 700px 350px at 20% 80%, rgba(6, 182, 212, 0.025) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 80% 20%, rgba(99, 102, 241, 0.02) 0%, transparent 60%);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-icon {
    font-size: 1.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 800px 400px at 30% 70%, rgba(99, 102, 241, 0.025) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 70% 30%, rgba(6, 182, 212, 0.02) 0%, transparent 60%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.5s;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%),
        radial-gradient(ellipse 200px 100px at 50% 50%, rgba(6, 182, 212, 0.01) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card > * {
    position: relative;
    z-index: 2;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0.8;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.author-info h4 {
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

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

/* Footer */
.footer {
    background: transparent;
    padding: 3rem 0 1rem;
    margin-bottom: 3rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: start;
}

/* Kolumna 1 - Email, Social, Copyright */
.footer-col-1 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-email a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.footer-email a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--text-secondary);
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.1);
}

.footer-copyright {
    margin-top: auto;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Kolumny 2-4 - Linki */
.footer-col-2,
.footer-col-3,
.footer-col-4 {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

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

.footer-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

/* Kolumna 5 - Ustawienia */
.footer-col-5 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.language-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.language-selector label {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.language-dropdown {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-dropdown:hover {
    border-color: var(--primary-color);
}

.language-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.color-mode-switch {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.switch {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: flex-start;
}

.switch .slider {
    order: 1;
}

.switch .switch-label {
    order: 2;
    margin-left: 0.75rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background: var(--text-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.switch input:checked + .slider {
    background: var(--primary-color);
}

.switch input:checked + .slider:before {
    transform: translateX(20px);
    background: white;
}

.switch-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.certification-badge {
    margin-top: auto;
}

.soc2-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    color: var(--success-color);
    font-size: 0.8rem;
    font-weight: 500;
}

.soc2-badge svg {
    width: 16px;
    height: 16px;
}

/* Strona wynik�w */
.results-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 800px 400px at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.results-section .container {
    position: relative;
    z-index: 2;
}

/* Header wynik�w */
.results-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.results-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.results-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.results-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.results-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.results-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.results-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Top uczelnie */
.top-universities {
    margin-bottom: 4rem;
}

.top-universities .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Karty uczelni - Top 3 */
.top-card {
    position: relative;
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.top-card:nth-child(2) {
    animation-delay: 0.2s;
}

.top-card:nth-child(3) {
    animation-delay: 0.4s;
}

.top-card:nth-child(4) {
    animation-delay: 0.6s;
}

.top-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.4);
}

.top-card:hover::before {
    opacity: 1;
}

.top-card > * {
    position: relative;
    z-index: 2;
}

/* Odznaki rankingowe */
.rank-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    z-index: 3;
}

.first-place .rank-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.second-place .rank-badge {
    background: linear-gradient(135deg, var(--text-secondary), var(--text-muted));
    color: white;
    box-shadow: 0 8px 25px rgba(161, 161, 170, 0.4);
}

.third-place .rank-badge {
    background: linear-gradient(135deg, var(--accent-color), #0891b2);
    color: white;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.rank-number {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Zawarto�� karty uczelni */
.university-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.university-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    grid-column: 1 / -1;
}

.university-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.university-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.score-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.score-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.university-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    grid-column: 1 / -1;
}

.university-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.detail-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.detail-icon svg {
    width: 16px;
    height: 16px;
}

.detail-text {
    font-weight: 500;
}

.university-description {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.university-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}

.university-actions {
    display: flex;
    gap: 1rem;
    grid-column: 1 / -1;
}

/* Pozosta�e wyniki */
.other-results {
    margin-bottom: 4rem;
}

.other-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.other-results-header h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 0;
}

.other-results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.other-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.other-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(99, 102, 241, 0.3);
}

.other-rank {
    position: relative;
    top: 0;
    left: 0;
    background: var(--bg-primary);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: none;
}

.other-card .university-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.other-card .university-header {
    margin-bottom: 0;
    flex: 1;
}

.other-card .university-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.other-card .university-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

/* Skill IQ */
.skill-iq-section {
    margin-bottom: 4rem;
}

.skill-iq-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-iq-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.skill-iq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-card > * {
    position: relative;
    z-index: 2;
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.skill-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    color: var(--primary-color);
}

.skill-icon svg {
    width: 24px;
    height: 24px;
}

.skill-info {
    flex: 1;
}

.skill-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.skill-level {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.skill-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.skill-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 4px;
    transition: width 1s ease;
    position: relative;
}

.skill-progress::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Akcje wynik�w */
.results-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.results-actions .btn {
    min-width: 200px;
}

/* Responsywno�� */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
        width: calc(100% - 40px);
        margin: 0 20px;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-radius: 20px;
        border: 1px solid var(--border-color);
        backdrop-filter: blur(25px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-banner {
        width: calc(100% + 30px);
        margin: 0 -15px 30px;
        padding: 100px 45px;
        left: 0;
        transform: none;
    }

    .banner-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding-right: 0;
    }

    .banner-text {
        text-align: center;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-image {
        width: 260px;
    }

    .banner-image {
        position: static;
        width: auto;
    }

    .banner-image img {
        position: static;
        width: 260px;
        height: 360px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .partners-list {
        gap: 2rem;
        margin: 90px auto 90px;
    }

    .partner-item img {
        height: 50px;
        max-width: 120px;
    }

    .image-section {
        padding: 60px 0;
    }

    .image-title {
        font-size: 2rem;
    }

    .image-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .action-section {
        padding: 80px 0;
    }

    .action-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .action-text {
        text-align: center;
    }

    .action-title {
        font-size: 2.2rem;
    }

    .text-image-section {
        padding: 80px 0;
        background-position: center right;
    }

    .text-image-content {
        min-height: 300px;
        text-align: center;
    }

    .text-side {
        flex: 1;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .main-text {
        font-size: 2.5rem;
    }

    .fullwidth-item {
        padding: 70px 0;
    }

    .fullwidth-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .fullwidth-text {
        text-align: center;
    }

    .fullwidth-title {
        font-size: 2rem;
    }

    .filters {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quiz-container {
        padding: 2rem;
    }

    .university-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .university-details {
        grid-template-columns: 1fr;
    }

    .quiz-navigation {
        flex-direction: column;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .quote-icon {
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-col-1 {
        grid-column: 1 / -1;
        text-align: center;
        gap: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px;
    }

    .nav-container {
        padding: 0 20px;
        border-radius: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 15px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .partners-list {
        gap: 1.5rem;
        margin: 70px auto 70px;
    }

    .partner-item img {
        height: 40px;
        max-width: 100px;
    }

    .image-section {
        padding: 40px 0;
    }

    .image-title {
        font-size: 1.8rem;
    }

    .image-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .action-section {
        padding: 60px 0;
    }

    .action-title {
        font-size: 2rem;
    }

    .action-description {
        font-size: 1.1rem;
    }

    .text-image-section {
        padding: 60px 0;
        background-position: center right;
    }

    .main-text {
        font-size: 2rem;
    }

    .sub-text {
        font-size: 1.1rem;
    }

    .fullwidth-item {
        padding: 60px 0;
    }

    .fullwidth-title {
        font-size: 1.8rem;
    }

    .fullwidth-subtitle {
        font-size: 1rem;
    }

    .hero-banner {
        width: calc(100% + 20px);
        margin: 0 -10px;
        padding: 90px 35px;
        left: 0;
        transform: none;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-slug {
        font-size: 1rem;
    }

    .banner-image {
        width: 200px;
    }

    .banner-image img {
        width: 200px;
        height: 300px;
        bottom: 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .quiz-container {
        padding: 1.5rem;
    }

    .question-text {
        font-size: 1.25rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .quote-icon {
        font-size: 2rem;
    }

    .author-avatar img {
        width: 50px;
        height: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col-1 {
        order: -1;
        text-align: center;
    }

    .footer-col-5 {
        text-align: center;
    }

    .language-selector,
    .color-mode-switch {
        align-items: center;
    }

    .switch {
        justify-content: center;
    }

    /* Responsywno�� - Strona wynik�w */
    .results-title h1 {
        font-size: 2.5rem;
    }

    .results-subtitle {
        font-size: 1.1rem;
    }

    .results-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .results-stats .stat-item {
        width: 200px;
    }

    .top-universities .section-title {
        font-size: 2rem;
    }

    .top-card {
        padding: 2rem;
    }

    .university-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .university-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .university-name {
        font-size: 1.5rem;
    }

    .university-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .university-actions {
        flex-direction: column;
    }

    .other-results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .other-results-header h3 {
        font-size: 1.5rem;
    }

    .skill-iq-section .section-title {
        font-size: 2rem;
    }

    .skill-iq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .skill-card {
        padding: 1.25rem;
    }

    .skill-header {
        gap: 0.75rem;
    }

    .skill-icon {
        width: 40px;
        height: 40px;
    }

    .skill-icon svg {
        width: 20px;
        height: 20px;
    }

    .skill-name {
        font-size: 1rem;
    }

    .skill-score {
        font-size: 1.25rem;
    }

    .results-actions {
        flex-direction: column;
        align-items: center;
    }

    .results-actions .btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

/* Modal styles */
.university-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    z-index: 2;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Notification styles */
.comparison-notification,
.download-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10001;
    animation: slideInRight 0.3s ease;
}

.notification-content {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.notification-content span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

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

/* ===== NEW MINIMALIST RESULTS DESIGN ===== */

/* Sekcja wynik�w - nowy design */
.results-section {
    padding: 4rem 0 6rem;
    background: var(--bg-primary);
    min-height: 100vh;
}

/* Header wynik�w */
.results-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.results-title h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.results-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 300;
}

/* Sekcja rekomendacji */
.recommendations-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Lista rekomendacji */
.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.recommendation-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recommendation-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.recommendation-item:hover::before {
    opacity: 1;
}

.recommendation-item.primary {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.recommendation-item.primary::before {
    opacity: 1;
}

/* Rank */
.recommendation-rank {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.recommendation-item.primary .recommendation-rank {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--primary-color);
}

/* University title with logo */
.university-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Logo */
.recommendation-logo {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.logo-placeholder.small {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.logo-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-placeholder.small .logo-text {
    font-size: 0.8rem;
}

.recommendation-item:hover .logo-placeholder {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Zawarto�� rekomendacji */
.recommendation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.recommendation-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.recommendation-score {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    flex-shrink: 0;
}

.score-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.score-unit {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.recommendation-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.meta-item {
    font-weight: 400;
}

.meta-divider {
    color: var(--text-muted);
    font-weight: 300;
}

.recommendation-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.recommendation-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.action-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn.primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.action-btn.primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* Pozosta�e wyniki */
.other-results {
    margin-bottom: 4rem;
}

.other-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.other-results-header h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
}

.other-results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.other-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.other-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.other-rank {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.other-logo {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.other-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.other-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.other-score {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* Skill IQ */
.skill-iq-section {
    margin-bottom: 4rem;
}

.skill-iq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.skill-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.skill-score {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.skill-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 1s ease;
    position: relative;
}

.skill-progress::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Akcje */
.results-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Responsywno�� */
@media (max-width: 768px) {
    .results-title h1 {
        font-size: 2.5rem;
    }

    .results-subtitle {
        font-size: 1.1rem;
    }

    .recommendation-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .recommendation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .university-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .recommendation-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }

    .other-results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .other-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .skill-iq-grid {
        grid-template-columns: 1fr;
    }

    .results-actions {
        flex-direction: column;
        align-items: center;
    }

    .results-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .results-section {
        padding: 2rem 0 4rem;
    }

    .results-header {
        padding: 2rem 0;
        margin-bottom: 3rem;
    }

    .results-title h1 {
        font-size: 2rem;
    }

    .recommendation-item {
        padding: 1rem;
    }

    .recommendation-header h3 {
        font-size: 1.25rem;
    }

    .score-value {
        font-size: 1.5rem;
    }
}

.header-logo {
    max-width: 200px;
}

/* Articles */
.hidden {
    display: none !important;
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-primary);
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.articles-page {
    padding-top: 140px;
}

.articles-hero {
    padding: 120px 0 80px;
    text-align: left;
}

.articles-hero-eyebrow,
.articles-eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.articles-hero h1 {
    font-size: 3rem;
    margin: 1rem 0;
}

.articles-hero-description {
    max-width: 800px;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.articles-hero-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.articles-hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.articles-hero-meta .meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.articles-hero-meta .meta-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.articles-list-section {
    padding: 40px 0 120px;
}

.articles-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.articles-meta {
    font-size: 0.95rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
}

.articles-loading,
.articles-error,
.articles-empty {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.articles-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.loading-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulse 1.2s infinite ease-in-out;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%,
    80%,
    100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.article-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.01);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border 0.3s ease;
    min-height: 360px;
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3);
}

.article-card-media {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.03);
}

.article-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-card-content h3 {
    margin: 0;
    font-size: 1.4rem;
}

.article-card-content p {
    color: var(--text-secondary);
    margin: 0;
    flex-grow: 1;
}

.article-card-link {
    font-weight: 600;
    color: var(--primary-color);
}

.article-page {
    padding-top: 140px;
}

.article-hero {
    padding: 140px 0 60px;
}

.article-back-link {
    text-decoration: none;
    color: var(--text-secondary);
    display: inline-block;
    margin-bottom: 1rem;
}

.article-meta {
    color: var(--text-secondary);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.article-cover {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.article-cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-content-section {
    padding-bottom: 120px;
}

.article-highlight {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: calc(1.1rem + 1px);
    font-weight: 700;
    line-height: 1.8;
    padding: 0;
    border: none;
    background: none;
    text-align: justify;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: justify;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2,
.article-body h3 {
    margin: 2rem 0 1rem;
}

.article-body img {
    max-width: 100%;
    border-radius: 16px;
}

.article-loading-state {
    margin: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
}

.article-error {
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.articles-cta {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.articles-cta-content h2 {
    font-size: 2.4rem;
    margin: 1rem 0;
}

.articles-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .articles-hero h1 {
        font-size: 2.2rem;
    }

    .article-card {
        min-height: auto;
    }

    .articles-hero-meta {
        grid-template-columns: 1fr;
    }
}
