@charset "utf-8";

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --navy: #0F172A;
    --navy-light: #1E293B;
    --navy-lighter: #334155;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8C2C;
    --gold-dim: rgba(212, 175, 55, 0.1);
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-subtle: #F3F4F6;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --text-on-dark: #F8FAFC;
    --border-light: #E2E8F0;
    --border-hover: #CBD5E1;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --container-max: 1240px;
    --header-height: 90px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.15);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--bg-white);
    overflow-x: hidden; /* Zapobiega przewijaniu na boki */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    text-wrap: balance;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-4);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
}

h5 {
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
}

p {
    margin-bottom: var(--space-6);
}

strong {
    color: var(--navy);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

::selection {
    background: var(--gold-dim);
    color: var(--navy);
}

.container {
    max-width: var(--container-max);
    margin: 0px auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-32) 0;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.section:last-child {
    border-bottom: none;
}

.section-header, .problem-header, .approach-header, .proof-header, .offer-header, .about-header, .faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-20);
}

.section-eyebrow, .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.eyebrow-text, .label-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.eyebrow-accent, .label-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.problem-subtitle, .approach-subtitle, .offer-header-subtitle, .proof-subtitle, .faq-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: var(--space-4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    padding-top: 24px;
    padding-bottom: 24px;
}

.header.scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px;
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-right: auto;
    height: 40px; /* Ensure consistent height */
}

.logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-menu {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-2) 0;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--navy);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.header-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-menu-mobile {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    z-index: 990;
    padding-top: 100px;
    padding-bottom: var(--space-8);
    padding-left: var(--space-6);
    padding-right: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    pointer-events: none;
}

.nav-menu-mobile.active {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
}

.nav-menu-mobile .nav-link {
    font-size: 1.5rem;
    font-family: "Playfair Display", serif;
    color: var(--navy);
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.875rem 1.5rem;
    background: var(--navy);
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    letter-spacing: 0.01em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--navy-light);
}

.cta-button:active {
    transform: translateY(0px);
    box-shadow: var(--shadow-sm);
}

.cta-button-secondary {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border-light);
    box-shadow: none;
}

.cta-button-secondary:hover {
    border-color: var(--navy);
    background: transparent;
    transform: translateY(-2px);
}

.cta-button-gold {
    background: var(--gold);
    color: rgb(255, 255, 255);
}

.cta-button-gold:hover {
    background: var(--gold-dark);
}

.cta-button-outline {
    background: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
}

.cta-button-outline:hover {
    background: var(--navy);
    color: rgb(255, 255, 255);
}

.cta-button-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.hero {
    padding-top: calc(var(--header-height) + var(--space-20));
    padding-bottom: var(--space-20);
    background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 40%), radial-gradient(circle at 0% 100%, rgba(15, 23, 42, 0.03) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-pill);
    color: var(--navy);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.hero h1 .hero-highlight {
    color: var(--navy);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero h1 .hero-highlight::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -5px;
    height: 12px;
    background: var(--gold-light);
    z-index: -1;
    opacity: 0.6;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 90%;
    margin-bottom: var(--space-8);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1;
}

.trust-bar {
    display: flex;
    gap: var(--space-8);
    padding-top: var(--space-8);
    margin-bottom: var(--space-10);
    border-top: 1px solid var(--border-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.125rem;
    line-height: 1;
}

.trust-label {
    font-size: 0.9375rem;
}

.hero-photo {
    display: flex;
    justify-content: center;
}

.hero-photo-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.photo-placeholder {
    aspect-ratio: 4 / 5;
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.photo-placeholder::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    pointer-events: none;
}

.photo-badge {
    position: absolute;
    bottom: var(--space-8);
    right: -2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.photo-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.section-problem {
    background: var(--bg-light);
}

.problem-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.problem-item {
    background: var(--bg-white);
    padding: var(--space-10);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.problem-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-dim);
}

.problem-item-number {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    color: var(--bg-subtle);
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    line-height: 1;
    font-weight: 700;
}

.problem-item-content {
    position: relative;
    z-index: 2;
}

.problem-item-quote {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 3.5rem;
    color: rgba(212, 175, 55, 0.25);
    line-height: 0.5;
    margin-bottom: var(--space-4);
}

.problem-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
    padding-right: var(--space-8);
}

.problem-item p {
    font-size: 0.9375rem;
    margin: 0px;
    line-height: 1.7;
}

.problem-item-featured {
    background: linear-gradient(145deg, var(--navy) 0%, #0B1120 100%);
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 30px -5px, rgba(212, 175, 55, 0.15) 0px 0px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-item-featured h3 {
    color: rgb(255, 255, 255);
}

.problem-item-featured p {
    color: rgba(255, 255, 255, 0.9);
}

.problem-item-featured .problem-item-number {
    color: rgba(255, 255, 255, 0.05);
}

.problem-item-badge {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    background: var(--gold);
    color: rgb(255, 255, 255);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.problem-resolution {
    margin-top: var(--space-16);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
}

.resolution-line {
    height: 1px;
    background: var(--border-light);
    width: 120px;
}

.resolution-content {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-8);
    background: rgb(255, 255, 255);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.resolution-icon {
    color: var(--gold);
}

.resolution-text {
    margin: 0px;
    line-height: 1.5;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.value-prop-card {
    padding: var(--space-10);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-prop-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
    transition: color 0.3s;
}

.value-prop-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.value-prop-card:hover {
    border-color: var(--gold-dim);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 40px -10px, rgba(212, 175, 55, 0.1) 0px 0px 30px;
    transform: translateY(-8px);
}

.value-prop-card:hover h3 {
    color: var(--navy);
}

.value-prop-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: var(--space-6);
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 1;
}

.value-prop-card:hover .value-prop-icon {
    background: var(--navy);
    color: var(--gold);
    transform: scale(1.1) rotate(-3deg);
    box-shadow: rgba(15, 23, 42, 0.3) 0px 10px 20px -5px;
}

.value-prop-stat {
    margin-top: auto;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    transition: border-color 0.3s;
}

.value-prop-card:hover .value-prop-stat {
    border-top-color: var(--gold-dim);
}

.stat-number {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.25rem;
}

.stat-label {
    font-size: 0.875rem;
    line-height: 1.35;
    display: block;
}

.approach-bottom-cta {
    margin-top: var(--space-16);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.section-proof {
    background: var(--navy);
    color: rgb(255, 255, 255);
}

.section-proof h2, .section-proof p, .section-proof strong {
    color: rgb(255, 255, 255);
}

.section-proof .proof-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-showcase {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-10);
    align-items: start;
    margin-bottom: var(--space-16);
}

.testimonial-hero {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-12);
    position: relative;
}

.testimonial-hero blockquote {
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: var(--space-8);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: 1;
    line-height: 1;
}

.testimonial-hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
}

.testimonial-hero-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar-premium {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: rgba(212, 175, 55, 0.3) 0px 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: "Playfair Display", serif;
}

.author-name {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-hero-metric {
    text-align: right;
}

.metric-value {
    display: block;
    font-size: 1.75rem;
    color: var(--gold);
    font-weight: 700;
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-secondary {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    transition: 0.3s;
}

.testimonial-card-premium:hover {
    background: rgba(255, 255, 255, 0.06);
}

.card-quote-text {
    font-style: italic;
    margin-bottom: var(--space-6);
    color: rgba(255, 255, 255, 0.9);
}

.card-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.card-author-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Playfair Display", serif;
}

.credentials-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-pill);
    padding: var(--space-6) var(--space-10);
    display: flex;
    margin: 0px auto;
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.credentials-inner {
    display: flex;
    justify-content: space-between;
    gap: var(--space-12);
    align-items: center;
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.credential-number {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
}

.credential-text {
    display: flex;
    flex-direction: column;
}

.credential-label {
    font-weight: 600;
}

.credential-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.credential-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.section-offer {
    background: var(--bg-light);
}

.offer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-16);
}

.offer-card-large {
    background: var(--navy);
    color: rgb(255, 255, 255);
    border-radius: var(--radius-lg);
    padding: var(--space-12);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.offer-card-large h3, .offer-card-large p {
    color: rgb(255, 255, 255);
}

.offer-card-large p.offer-hero-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: var(--space-8);
}

.offer-hero-badge {
    background: var(--gold);
    color: var(--navy);
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-6);
}

.offer-for-whom {
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.for-whom-title {
    font-size: 0.875rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
    font-weight: 700;
}

.for-whom-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.for-whom-item {
    display: flex;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.95);
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.for-whom-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.for-whom-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.offer-process {
    background: rgb(255, 255, 255);
    border-radius: var(--radius-lg);
    padding: var(--space-12);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.process-header h4 {
    margin-bottom: var(--space-4);
}

.process-line {
    height: 4px;
    width: 60px;
    background: var(--gold);
    border-radius: 2px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    margin-top: var(--space-8);
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 40px;
    left: 15px;
    width: 2px;
    background: var(--bg-subtle);
    z-index: 0;
}

.process-step {
    display: flex;
    gap: var(--space-4);
    position: relative;
    z-index: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--navy);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0px;
}

.deliverables-section {
    margin-bottom: var(--space-12);
}

.deliverables-section h4 {
    text-align: center;
    margin-bottom: var(--space-8);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.deliverable-card {
    background: rgb(255, 255, 255);
    padding: var(--space-8);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.deliverable-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--gold-dim);
}

.deliverable-featured {
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgba(212, 175, 55, 0.05) 100%);
    box-shadow: rgba(212, 175, 55, 0.1) 0px 4px 15px;
}

.deliverable-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: var(--space-4);
}

.deliverable-content h5 {
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
}

.deliverable-content p {
    font-size: 0.9375rem;
    line-height: 1.5;
}

.offer-cta-section {
    background: rgb(255, 255, 255);
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.offer-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-8);
}

.budget-info {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 0px;
    line-height: 1.4;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-16);
    margin-bottom: var(--space-16);
    align-items: start;
}

.about-photo-container {
    position: relative;
    z-index: 1;
}

.about-photo-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.about-photo-accent {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-signature {
    margin-top: var(--space-16);
    text-align: center;
}

.signature-name {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
}

.signature-title {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.about-lead {
    font-size: 1.5rem;
    font-family: "Playfair Display", serif;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: var(--space-8);
    padding-left: var(--space-6);
    border-left: 3px solid var(--gold);
}

.about-distinction {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-8);
    background: rgba(212, 175, 55, 0.03);
    border-radius: var(--radius-md);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    border-image: initial;
    border-left: 4px solid var(--gold);
    margin-top: var(--space-8);
}

.distinction-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.stat-card {
    background: rgb(255, 255, 255);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 4px 20px;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 30px;
    background: rgb(255, 255, 255);
}

.stat-card:hover .stat-icon {
    background: var(--navy);
    color: var(--gold);
    transform: scale(1.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: 0.3s;
}

.faq-content {
    background: rgb(255, 255, 255);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    max-width: 900px;
    margin: 0px auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.3s;
}

.faq-item.active {
    background-color: rgba(249, 250, 251, 0.5);
    box-shadow: inset 3px 0 0 var(--gold);
}

.faq-item.active .faq-text {
    color: var(--navy);
    text-shadow: rgba(15, 23, 42, 0.1) 0px 0px 1px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-6) var(--space-8);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    outline: none;
}

.faq-question:hover .faq-icon {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.faq-question:focus-visible {
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-number {
    font-family: "Playfair Display", serif;
    color: var(--gold);
    margin-right: var(--space-6);
    font-weight: 600;
}

.faq-text {
    flex: 1 1 0%;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
}

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    background: var(--navy);
    color: rgb(255, 255, 255);
    transform: rotate(45deg);
    border-color: var(--navy);
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: 0.3s;
}

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

.faq-answer p {
    padding: 0 var(--space-8) var(--space-8) 4.5rem;
    color: var(--text-secondary);
}

.faq-cta {
    background: var(--bg-light);
    padding: var(--space-8);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-cta p {
    margin-bottom: 0px;
    font-weight: 500;
    color: var(--text-secondary);
}

.faq-cta-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--navy);
    font-weight: 600;
}

.section-cta {
    background: var(--navy);
    color: rgb(255, 255, 255);
    padding: var(--space-24) 0;
    overflow: hidden;
}

.section-cta strong {
    color: rgb(255, 255, 255);
}

.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-10);
}

.cta-benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.cta-benefit-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.cta-benefit-text {
    color: rgba(255, 255, 255, 0.9);
}

.cta-card {
    background: rgb(255, 255, 255);
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px, rgba(212, 175, 55, 0.15) 0px 0px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card-header h3 {
    margin-bottom: var(--space-2);
}

.cta-card-badge {
    background: var(--bg-light);
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    display: inline-block;
}

.cta-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.cta-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: 3px solid rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
}

.cta-card-features {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin: var(--space-8) 0;
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--border-light);
}

.cta-card-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.cta-card-feature svg {
    color: var(--gold);
}

.cta-card .cta-button {
    width: 100%;
}

.cta-card-divider {
    display: flex;
    align-items: center;
    margin: var(--space-6) 0;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-card-divider::before, .cta-card-divider::after {
    content: "";
    flex: 1 1 0%;
    height: 1px;
    background: var(--border-light);
}

.cta-card-divider span {
    padding: 0 var(--space-4);
}

.cta-email-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--bg-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-weight: 500;
    transition: 0.3s;
}

.cta-email-link:hover {
    background: var(--navy);
    color: rgb(255, 255, 255);
}

.cta-social {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.cta-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.cta-social-link:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cta-contacts-group {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.footer {
    background: rgb(11, 17, 32);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-20) 0 var(--space-8);
    font-size: 0.9375rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    height: 40px; /* Same height as header for consistency */
}

.footer-logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Inverts colors to white for dark footer */
    opacity: 0.9; /* Slightly soften the white to match text */
}

.footer-brand-desc {
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    gap: var(--space-16);
}

.footer-links {
    flex: 1 1 0%;
}

.footer-contact-list li {
    margin-bottom: var(--space-4);
}

.footer-nav h4 {
    color: rgb(255, 255, 255);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
}

.footer-nav ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.footer-nav li {
    margin-bottom: var(--space-3);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-contact-list li {
    display: flex;
    gap: var(--space-3);
}

.footer-contact-list svg {
    color: var(--gold);
    flex-shrink: 0;
}

.footer-nav strong {
    color: rgb(255, 255, 255);
    display: block;
    margin-bottom: var(--space-2);
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.company-name {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    display: block;
}

.company-address {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.company-id {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-2);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-contact-link:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    padding-top: var(--space-8);
}

.footer-bottom p {
    margin-bottom: 0px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    color: rgba(255, 255, 255, 0.4);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    line-height: 1;
}

.footer-bottom-right {
    display: flex;
    gap: var(--space-6);
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.footer-bottom-right a:hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    .header-actions {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-grid, .offer-main, .cta-layout, .footer-main, .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    .hero-photo-frame {
        max-width: 400px;
        margin: 0px auto;
    }
    .about-photo-accent {
        width: 100%;
        height: 100%;
        left: 1rem; /* Mniejsze przesunięcie na mobile */
        top: 1rem;
    }
    
    .about-photo-container {
        /* Zapewnienie, że kontener mieści się w szerokości, uwzględniając przesunięty accent */
        margin-right: 1rem; 
        max-width: calc(100% - 1rem);
    }
    .value-prop-grid, .deliverables-grid, .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .offer-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --space-32: 5rem;
    }
    html {
        font-size: 15px;
    }
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    .section {
        padding: var(--space-20) 0;
    }
    .hero {
        padding-bottom: var(--space-16);
    }
    .value-prop-grid, .deliverables-grid, .about-stats, .testimonials-showcase {
        grid-template-columns: 1fr;
    }
    .credentials-inner {
        flex-direction: column;
        gap: var(--space-8);
    }
    .problem-showcase {
        grid-template-columns: 1fr;
    }

    .credential-divider {
        width: 100%;
        height: 1px;
    }
    .credentials-bar {
        border-radius: var(--radius-lg);
        width: 100%;
        padding: var(--space-8);
    }
    .credential {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: var(--space-2);
    }
    .credential-text {
        align-items: center;
    }
    .footer-nav {
        flex-direction: column;
        gap: var(--space-8);
    }
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    .footer-bottom-left {
        flex-direction: column;
        gap: var(--space-2);
    }
    .footer-separator {
        display: none;
    }
    .cta-card-features {
        flex-direction: column;
    }
    
    .problem-resolution {
        flex-direction: column;
        text-align: center;
    }
    
    .resolution-line {
        display: none;
    }

    .resolution-content {
        width: 100%;
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: var(--space-4);
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    /* Fix potential overflow from absolute positioning in testimonials */
    .quote-mark {
        left: 0;
        font-size: 6rem; /* Smaller on mobile */
    }

    .trust-bar {
        flex-direction: column;
        gap: var(--space-6);
        align-items: flex-start;
    }
    .photo-badge {
        position: absolute;
        bottom: var(--space-4);
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 90%; /* Zabezpieczenie przed wychodzeniem */
        max-width: 300px;
        justify-content: center;
        padding: var(--space-3) var(--space-4);
        white-space: nowrap; /* Zapobiega łamaniu w niekontrolowany sposób */
    }

    .testimonial-hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-6);
    }

    .testimonial-hero-metric {
        text-align: left;
        width: 100%;
        padding-left: 0; /* Removed indent for clean stacking */
    }

    .faq-cta {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Additional styles for very small screens if needed, 
       currently covered by general mobile rules */
}
