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

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - dopasowane do colors.md */
    --color-primary: #0127FE;
    --color-primary-rgb: 1, 39, 254;
    --color-secondary: #2544F9;
    --color-secondary-rgb: 37, 68, 249;
    --color-neutral-light: #B8C6DF;
    --color-neutral-light-rgb: 184, 198, 223;
    --color-background: #FFFFFF;
    --color-neutral-dark: #0D1B2A;
    --color-neutral-dark-rgb: 13, 27, 42;

    /* Aliasy dla kompatybilności */
    --color-accent: var(--color-secondary);
    --color-accent-rgb: var(--color-secondary-rgb);
    --navy-dark: var(--color-neutral-dark);
    --navy: var(--color-neutral-dark);
    --blue-primary: var(--color-secondary);
    --blue-light: var(--color-primary);
    --white: var(--color-background);
    --gray-light: var(--color-neutral-light);
    --gray-medium: #6c757d;
    --text-dark: var(--color-neutral-dark);

    /* Cienie */
    --shadow: 0 4px 6px rgba(var(--color-neutral-dark-rgb), 0.1);
    --shadow-lg: 0 10px 30px rgba(var(--color-neutral-dark-rgb), 0.15);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-neutral-dark);
    color: var(--white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--white);
}

.btn-secondary-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-light:hover {
    background: var(--white);
    color: var(--color-neutral-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--gray-medium);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-border-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-text {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-text:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 52px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 0.25rem 0;
    text-align: center;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.nav-menu a.active {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    background: var(--color-neutral-dark);
    color: var(--white);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero .hero-cta .btn,
.hero .hero-cta .btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    min-height: 56px;
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 600;
}

.hero .hero-cta .btn-primary {
    border: 2px solid var(--color-primary);
}

.hero .hero-cta .btn-text {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    opacity: 1;
    transform: none;
}

.hero .hero-cta .btn-text:hover {
    background: var(--color-primary);
    color: var(--white);
    opacity: 1;
    transform: none;
}

.hero-wrapper {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--color-accent);
    display: inline-block;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.profile-card {
    background: var(--white);
    border-radius: 0;
    padding: 0;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    max-width: 400px;
    position: relative;
    z-index: 3;
}

.profile-image-placeholder {
    margin-bottom: 0;
    position: relative;
}

.profile-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Dekoracyjne kwadraty wokół zdjęcia hero */
.profile-image-placeholder::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    top: -15px;
    right: -15px;
    z-index: -1;
    opacity: 0.7;
}

.profile-image-placeholder::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    bottom: 30px;
    left: -20px;
    z-index: -1;
    opacity: 0.5;
}

.hero-image-decoration {
    position: absolute;
    background: var(--color-accent);
    z-index: 2;
}

.hero-image-decoration-1 {
    width: 50px;
    height: 50px;
    top: 50%;
    right: -25px;
    opacity: 0.6;
}

.image-placeholder {
    background: var(--gray-light);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    height: 250px;
}

.image-placeholder.large {
    height: 400px;
    font-size: 5rem;
    padding: 4px;
    background: linear-gradient(140deg, rgba(13, 27, 42, 0.7), rgba(var(--color-primary-rgb), 0.45));
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(var(--color-neutral-dark-rgb), 0.25);
}

.image-placeholder.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.03);
}

.image-about {
    position: relative;
    padding: 6px;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8), rgba(var(--color-primary-rgb), 0.55));
    box-shadow: 0 18px 36px rgba(var(--color-neutral-dark-rgb), 0.35);
}

.image-about::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.image-about img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.profile-info {
    padding: 2rem;
    background: var(--white);
}

.profile-info h3 {
    margin-bottom: 0.25rem;
}

.profile-info p {
    color: var(--gray-medium);
    margin: 0;
}

/* Decorative Squares */
.decoration-square {
    position: absolute;
    background: var(--color-accent);
    z-index: 1;
}

.decoration-square-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    opacity: 0.15;
}

.decoration-square-2 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 35%;
    opacity: 0.1;
}

.decoration-square-3 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: 5%;
    opacity: 0.2;
}

.decoration-square-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 8%;
    opacity: 0.15;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(var(--color-neutral-dark-rgb), 0.1);
}

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

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

.stat-number {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-medium);
    font-size: 1rem;
}

/* Content Split Sections */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse>* {
    direction: ltr;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: linear-gradient(135deg,
            rgba(var(--color-neutral-dark-rgb), 0.05) 0%,
            rgba(255, 255, 255, 1) 100%);
    border-top: 1px solid rgba(var(--color-neutral-dark-rgb), 0);
    position: relative;
    overflow: hidden;
}

.problem-content {
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.problem-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-content h2 .muted-note {
    font-size: 0.75em;
    color: rgba(var(--color-neutral-dark-rgb), 0.55);
    font-weight: 500;
    display: inline-block;
    margin: 0 0.25rem;
}

.problem-content h2 .muted-note {
    font-size: 0.75em;
    color: rgba(var(--color-neutral-dark-rgb), 0.55);
    font-weight: 500;
    display: inline-block;
    margin: 0 0.25rem;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.problem-list .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-list strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.problem-list p {
    margin: 0;
    color: var(--gray-medium);
    font-size: 1rem;
}

.highlight-box {
    background: var(--color-neutral-dark);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 0;
    margin-top: 2rem;
}

.highlight-box p {
    margin: 0;
    font-size: 1.5rem;
}

.decoration-square-problem-1 {
    width: 90px;
    height: 90px;
    top: 8%;
    left: 12%;
    opacity: 0.18;
    background: var(--color-accent);
}

.decoration-square-problem-2 {
    width: 140px;
    height: 140px;
    bottom: 5%;
    right: 8%;
    opacity: 0.14;
    background: var(--color-primary);
}

.decoration-square-problem-3 {
    width: 70px;
    height: 70px;
    top: 45%;
    right: 20%;
    opacity: 0.2;
    background: rgba(var(--color-neutral-dark-rgb), 0.65);
}

.decoration-square-problem-4 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 30%;
    opacity: 0.18;
    background: rgba(var(--color-neutral-light-rgb), 0.9);
}

.decoration-square-problem-5 {
    width: 110px;
    height: 110px;
    bottom: 20%;
    left: 5%;
    opacity: 0.25;
    background: rgba(255, 255, 255, 0.4);
}

.decoration-square-problem-6 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 35%;
    opacity: 0.22;
    background: rgba(var(--color-primary-rgb), 0.8);
}

.decoration-square-problem-7 {
    width: 75px;
    height: 75px;
    top: 25%;
    left: 45%;
    opacity: 0.24;
    background: rgba(var(--color-neutral-light-rgb), 0.7);
}

.decoration-square-problem-8 {
    width: 55px;
    height: 55px;
    top: 70%;
    right: 30%;
    opacity: 0.22;
    background: rgba(var(--color-primary-rgb), 0.6);
}

.decoration-square-problem-9 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 35%;
    opacity: 0.15;
    background: rgba(var(--color-neutral-dark-rgb), 0.45);
}

.decoration-square-problem-10 {
    width: 65px;
    height: 65px;
    top: 5%;
    right: 12%;
    opacity: 0.2;
    background: rgba(var(--color-accent-rgb), 0.7);
}

.decoration-square-problem-11 {
    width: 45px;
    height: 45px;
    top: 35%;
    left: 25%;
    opacity: 0.25;
    background: rgba(255, 255, 255, 0.5);
}

.decoration-square-problem-12 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 15%;
    opacity: 0.22;
    background: rgba(var(--color-secondary-rgb), 0.8);
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: var(--white);
    border-top: 1px solid rgba(var(--color-neutral-dark-rgb), 0.1);
}

.video-wrapper {
    max-width: 800px;
    margin: 2rem auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    background: var(--gray-light);
    border-radius: 0;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.video-caption {
    text-align: center;
    color: var(--gray-medium);
    margin-top: 1rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
}

.section-header .view-all {
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: 600;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--color-neutral-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section .section-header h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
}

.services-section .section-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    color: var(--white);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(var(--color-accent-rgb), 0.2);
}

.service-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.service-image {
    margin-bottom: 1.5rem;
}

.service-image .image-placeholder {
    background: rgba(var(--color-accent-rgb), 0.2);
    height: 180px;
}

.service-card .btn {
    margin-top: 1.5rem;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--color-neutral-dark);
    border-color: var(--white);
}

/* Section Divider */
.section-divider {
    background: var(--color-neutral-dark);
    color: var(--white);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(var(--color-neutral-dark-rgb), 0.15);
}

.section-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(var(--color-primary-rgb), 0.25), rgba(255, 255, 255, 0.05));
    opacity: 0.7;
}

.section-divider .container {
    position: relative;
}

.divider-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.divider-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

.divider-line {
    flex: 1;
    height: 1px;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.4);
}

.divider-text {
    margin: 0;
    font-size: 1.05rem;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.85);
}

/* Additional decorative squares for services */
.decoration-square-5 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 3%;
    opacity: 0.1;
}

.decoration-square-6 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 5%;
    opacity: 0.15;
}

.decoration-square-7 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 8%;
    opacity: 0.1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--color-neutral-dark);
    color: var(--white);
}

.testimonials-section .section-header h2 {
    color: var(--white);
    font-weight: 700;
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
}

.testimonial-card {
    position: relative;
    padding: 3rem;
    border-radius: 0;
    border: 1px solid transparent;
    background: rgba(4, 10, 20, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(var(--color-neutral-dark-rgb), 0.35);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(130deg,
            rgba(255, 255, 255, 0.25),
            rgba(var(--color-primary-rgb), 0.5),
            rgba(7, 35, 85, 0.9));
    z-index: -2;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 55%);
    background-color: rgba(4, 10, 20, 0.95);
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(var(--color-neutral-dark-rgb), 0.45);
}

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

.testimonial-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.8;
}

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

.author-image {
    width: 60px;
    height: 60px;
    background: var(--gray-light);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-weight: 600;
}

.testimonial-author p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--white);
    border-top: 1px solid rgba(var(--color-neutral-dark-rgb), 0.1);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-neutral-dark);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin: 1.75rem 0 1.25rem;
    display: flex;
    justify-content: center;
}

.step-icon svg {
    width: 72px;
    height: 72px;
    stroke: var(--color-neutral-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
    border-top: 1px solid rgba(var(--color-neutral-dark-rgb), 0.1);
}

.about-shell {
    position: relative;
    padding: 3rem 0;
    min-height: 520px;
    overflow: visible;
}

.about-portrait {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-12%, -50%);
    width: clamp(220px, 30vw, 380px);
    max-width: 400px;
    z-index: 2;
}

.about-portrait-card {
    margin-top: 1.25rem;
    background: rgba(4, 10, 20, 0.85);
    color: var(--white);
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 15px 30px rgba(var(--color-neutral-dark-rgb), 0.35);
}

.about-panel {
    position: relative;
    padding: 3rem;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 255, 0.95));
    border: 1px solid rgba(var(--color-neutral-dark-rgb), 0.07);
    box-shadow: 0 25px 45px rgba(var(--color-neutral-dark-rgb), 0.12);
    overflow: hidden;
    z-index: 0;
    margin-left: clamp(200px, 32vw, 420px);
}

.about-panel::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.15);
    pointer-events: none;
    z-index: -1;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.about-highlight {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(var(--color-neutral-dark-rgb), 0.1);
    background: rgba(var(--color-primary-rgb), 0.08);
    color: var(--color-neutral-dark);
    font-weight: 600;
}

.about-card {
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.1), rgba(8, 19, 53, 0.08));
    border: 1px solid rgba(var(--color-neutral-dark-rgb), 0.08);
    padding: 1.75rem;
    margin-bottom: 1.75rem;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 1rem;
}

.about-list li span {
    font-size: 1.25rem;
    line-height: 1.2;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.signature-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.6), transparent);
}

.about-signature strong {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-signature span {
    font-size: 0.9rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.credential {
    font-weight: 600;
    color: var(--color-neutral-dark);
}

/* Resources Section */
.resources-section {
    padding: 6rem 0;
    background: var(--white);
    border-top: 1px solid rgba(var(--color-neutral-dark-rgb), 0.1);
}

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

.section-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-badge-light {
    background: rgba(var(--color-primary-rgb), 0.12);
    color: var(--color-neutral-dark);
    border: 1px solid rgba(var(--color-neutral-dark-rgb), 0.08);
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.resource-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.resource-image {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    height: 240px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-image .image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    height: 100%;
}

.resource-image-actual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.resource-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-category {
    display: inline-block;
    background: rgba(var(--color-accent-rgb), 0.1);
    color: var(--color-accent);
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    width: fit-content;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.resource-card p {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.resource-details-card {
    border: 1px solid rgba(var(--color-neutral-dark-rgb), 0.08);
    background: rgba(var(--color-primary-rgb), 0.05);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: grid;
    gap: 1rem;
}

.resource-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
}

.resource-detail strong {
    display: block;
    color: var(--color-neutral-dark);
    font-size: 1rem;
}

.resource-detail p {
    margin: 0.2rem 0 0;
    font-size: 0.95rem;
    color: var(--gray-medium);
}

.icon-monochrome {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

.icon-monochrome svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-neutral-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.resource-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.resource-cta:hover {
    gap: 0.75rem;
    color: var(--color-primary);
}

.resource-cta .arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.resource-cta:hover .arrow {
    transform: translateX(4px);
}

/* Lead Magnet Section */
.lead-magnet-section {
    padding: 5rem 0;
    background: var(--color-neutral-dark);
    color: var(--white);
}

.lead-magnet-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 3rem;
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-magnet-text h2 {
    color: var(--white);
    margin-top: 1rem;
    font-weight: 700;
}

.lead-magnet-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

.badge-light {
    display: inline-block;
    background: var(--color-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0;
    color: var(--text-dark);
}

.form-card h3 {
    margin-bottom: 1.5rem;
}

.form-card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.form-card input[type="text"],
.form-card input[type="email"] {
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 0;
    font-size: 1rem;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.form-card input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.checkbox-label {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.875rem;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray-medium);
    text-align: center;
    margin-top: 1rem;
}

.lead-magnet-form {
    position: relative;
}

.lead-magnet-form::before {
    content: "";
    position: absolute;
    inset: -20px -20px -20px 10px;
    background: radial-gradient(circle at top, rgba(var(--color-primary-rgb), 0.25), transparent 65%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.lead-magnet-form > .form-card {
    position: relative;
    z-index: 1;
}

.ml-form-embedContainer,
.ml-form-embedWrapper,
.ml-form-embedBody,
.ml-form-embedBody form {
    width: 100%;
}

.ml-form-formContent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.ml-form-fieldRow {
    width: 100%;
}

.ml-form-fieldRow input {
    width: 100%;
}

.ml-form-checkboxRow {
    margin: 0.5rem 0 1rem;
}

.form-extra {
    margin-top: 1.75rem;
    border: 1px solid rgba(var(--color-neutral-dark-rgb), 0.08);
    padding: 1.5rem 1.25rem;
    background: rgba(var(--color-primary-rgb), 0.06);
}

.form-extra-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.form-extra-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-extra-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
}

.form-extra-item strong {
    display: block;
    font-size: 1rem;
    color: var(--color-neutral-dark);
}

.form-extra-item p {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.form-guarantee {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: var(--color-neutral-dark);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background: var(--color-neutral-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-neutral-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Utility Classes */
.center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .logo-image {
        height: 47px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content,
    .content-split,
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-menu {
        display: none;
    }

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

    .services-grid,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn,
    .hero-cta .btn-text {
        width: 100%;
        text-align: center;
    }

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

    .hero-image {
        display: none;
    }

    .hero-image-decoration {
        display: none;
    }

    .author-image {
        display: none;
    }

    .content-image {
        display: none;
    }

    .container {
        padding: 0 35px;
    }

    .section-header.center {
        flex-direction: column;
        gap: 1rem;
    }

    /* Zmniejszenie paddingów między sekcjami o 30% */
    .stats-section,
    .problem-section,
    .video-section,
    .testimonials-section,
    .process-section,
    .about-section,
    .final-cta-section {
        padding: 3.5rem 0;
    }

    .services-section,
    .resources-section,
    .lead-magnet-section {
        padding: 4.2rem 0;
    }

    /* Zmniejszenie odstępów w stats-grid o 30% */
    .stats-grid {
        gap: 1.4rem;
    }

    .services-section .section-header h2 {
        font-size: 2rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .decoration-square {
        opacity: 0.3;
    }

    .problem-content {
        max-width: 100%;
    }

    .about-panel {
        padding: 2rem;
        margin-left: 0;
    }

    .about-shell {
        padding: 0;
        min-height: auto;
    }

    .about-portrait {
        position: relative;
        transform: none;
        width: 100%;
        margin-bottom: 2rem;
    }

    .about-portrait-card {
        position: static;
    }

    .about-highlights {
        flex-direction: column;
    }

    .about-signature {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 29px;
    }

    .logo-image {
        height: 42px;
    }

    h1 {
        font-size: 2rem;
    }

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

    .stat-card {
        padding: 0;
    }

    .services-grid,
    .resources-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder.large {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .services-section .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header-center h2 {
        font-size: 1.75rem;
    }

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

    .resource-card h3 {
        font-size: 1.25rem;
    }
}
