* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #d4a574;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.15);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 90%;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 20px 60px;
}

.hero-image-block {
    position: absolute;
    right: 0;
    top: 15%;
    width: 55%;
    height: 70%;
    z-index: 1;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 120px;
}

.hero-overlay {
    position: absolute;
    bottom: -30px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 2;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding-left: 80px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.intro-curiosity {
    padding: 100px 20px;
    background: var(--bg-light);
}

.intro-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-text-narrow {
    flex: 1;
    padding-left: 60px;
}

.intro-text-narrow h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-text-narrow p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.intro-visual {
    flex: 0 0 350px;
    transform: translateY(-40px) rotate(-3deg);
}

.intro-visual img {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.story-section {
    padding: 120px 20px;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.story-image-left {
    flex: 0 0 400px;
    transform: translateX(-50px);
}

.story-image-left img {
    border-radius: 0 80px 0 80px;
    box-shadow: var(--shadow);
}

.story-content-right {
    flex: 1;
}

.story-content-right h3 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-content-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-inline:hover {
    transform: translateX(5px);
}

.problem-amplify {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    flex: 0 1 350px;
    backdrop-filter: blur(10px);
}

.card-offset-1 {
    transform: translateY(-30px) rotate(-2deg);
}

.card-offset-2 {
    transform: translateY(20px);
}

.card-offset-3 {
    transform: translateY(-15px) rotate(1deg);
}

.problem-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.insight-reveal {
    padding: 120px 20px;
    background: var(--white);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.insight-content {
    flex: 1;
    padding-right: 40px;
}

.insight-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.insight-image {
    flex: 0 0 450px;
    transform: translateY(40px) rotate(2deg);
}

.insight-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
}

.trust-build {
    padding: 100px 20px;
    background: var(--bg-light);
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-container h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.trust-lead {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.trust-icon {
    flex: 0 0 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.trust-text h5 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trust-text p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial-inline {
    padding: 80px 20px;
    background: var(--white);
}

.testimonial-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.testimonial-quote {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 30px;
    border-left: 5px solid var(--accent-color);
    transform: rotate(-1deg);
}

.testimonial-quote p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

.testimonial-image {
    flex: 0 0 200px;
}

.testimonial-image img {
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.kolekcje-section {
    padding: 120px 20px;
    background: var(--white);
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 60px;
    padding-left: 80px;
    color: var(--primary-color);
}

.kolekcje-grid {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.kolekcja-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card-large {
    flex: 1 1 600px;
    transform: translateY(-20px);
}

.card-medium {
    flex: 1 1 calc(50% - 20px);
    transform: translateY(30px);
}

.card-medium:last-child {
    transform: translateY(-10px) rotate(1deg);
}

.kolekcja-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.kolekcja-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.card-medium img {
    height: 400px;
}

.kolekcja-info {
    padding: 30px;
    background: var(--white);
}

.kolekcja-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.kolekcja-info p {
    color: var(--text-light);
}

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

.cta-secondary {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.benefit-reveal {
    padding: 100px 20px;
    background: var(--bg-light);
}

.benefit-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 1.1rem;
    padding: 15px 0 15px 40px;
    position: relative;
    color: var(--text-color);
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.benefit-visual {
    flex: 0 0 400px;
    transform: translateX(30px) rotate(-2deg);
}

.benefit-visual img {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.social-proof {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.social-proof h3 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-box {
    flex: 1 1 300px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 20px;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.testimonial-box:nth-child(2) {
    transform: rotate(1deg) translateY(-15px);
}

.testimonial-box:nth-child(3) {
    transform: rotate(-0.5deg);
}

.testimonial-box:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: var(--shadow);
}

.testimonial-box p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-color);
}

.testimonial-box cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.oferta-section {
    padding: 120px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

.oferta-header {
    text-align: center;
    margin-bottom: 80px;
}

.oferta-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.oferta-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.services-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.item-offset-1 { transform: translateY(-20px); }
.item-offset-2 { transform: translateY(15px) rotate(-1deg); }
.item-offset-3 { transform: translateY(-10px); }
.item-offset-4 { transform: translateY(25px) rotate(1deg); }
.item-offset-5 { transform: translateY(-15px); }
.item-offset-6 { transform: translateY(10px) rotate(-0.5deg); }

.service-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px) rotate(0deg);
    box-shadow: var(--shadow-strong);
}

.service-item h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.btn-select-service {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

.urgency-section {
    padding: 80px 20px;
    background: var(--accent-color);
    text-align: center;
}

.urgency-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.urgency-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 15px;
    color: var(--white);
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-lead {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.order-form {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.final-cta {
    padding: 120px 20px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.final-cta-content h2 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 40px;
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 20px 60px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.sticky-btn {
    display: block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 20px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 180px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-content p {
    font-size: 1.3rem;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.about-story {
    padding: 100px 20px;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-image-offset {
    flex: 0 0 450px;
    transform: translateY(30px) rotate(2deg);
}

.about-image-offset img {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.mission-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.mission-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.mission-visual {
    flex: 0 0 400px;
    transform: rotate(-2deg);
}

.mission-visual img {
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.mission-content {
    flex: 1;
}

.mission-content h3 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.values-section {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    max-width: 500px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.value-card:nth-child(odd) {
    transform: translateY(-15px) rotate(-1deg);
}

.value-card:nth-child(even) {
    transform: translateY(15px) rotate(1deg);
}

.value-card:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: var(--shadow);
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.team-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-container h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-member p {
    color: var(--text-light);
}

.cta-about {
    padding: 100px 20px;
    background: var(--accent-color);
    text-align: center;
    color: var(--white);
}

.cta-about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 500px;
}

.service-detail-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.service-detail:nth-child(odd) .service-detail-image {
    transform: rotate(-2deg);
}

.service-detail:nth-child(even) .service-detail-image {
    transform: rotate(2deg);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-desc {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    color: var(--text-color);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.contact-info-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-card {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.contact-info-card h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-detail a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 0 0 500px;
    transform: rotate(2deg);
}

.contact-map img {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.contact-visit {
    padding: 80px 20px;
    background: var(--white);
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.visit-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.visit-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-faq {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-cta {
    padding: 80px 20px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.contact-cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 150px 20px 80px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

.thanks-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-color);
}

.selected-service-info {
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding: 15px 0 15px 50px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-color);
}

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-tertiary {
    display: inline-block;
    color: var(--text-color);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.cta-tertiary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.thanks-follow {
    padding: 80px 20px;
    background: var(--white);
}

.follow-content {
    max-width: 700px;
    margin: 0 auto;
}

.follow-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.follow-list {
    list-style: none;
}

.follow-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.follow-list a {
    color: var(--accent-color);
    font-weight: 600;
}

.follow-list a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 150px 20px 80px;
    background: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-color);
}

.legal-container ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-container ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-color);
}

.legal-container a {
    color: var(--accent-color);
    font-weight: 600;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-block {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        margin-bottom: 40px;
    }

    .hero-content-offset {
        padding-left: 0;
    }

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

    .intro-layout,
    .story-container,
    .insight-wrapper,
    .benefit-layout,
    .mission-layout,
    .about-container {
        flex-direction: column;
    }

    .intro-text-narrow {
        padding-left: 0;
    }

    .intro-visual,
    .story-image-left,
    .insight-image,
    .benefit-visual,
    .mission-visual,
    .about-image-offset {
        flex: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        transform: none;
    }

    .testimonial-asymmetric {
        flex-direction: column;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-map {
        flex: 1;
        width: 100%;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        padding: 15px 20px;
        border-radius: 20px;
        top: 10px;
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-menu {
        flex-basis: 100%;
        flex-direction: column;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -2px;
    }

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

    .section-title-offset {
        padding-left: 20px;
        font-size: 2.2rem;
    }

    .intro-text-narrow h2,
    .insight-content h2 {
        font-size: 2rem;
    }

    .story-content-right h3,
    .benefit-content h3 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .final-cta-content h2 {
        font-size: 2.2rem;
    }

    .order-form {
        padding: 30px 25px;
    }

    .service-item {
        flex: 1 1 100%;
    }

    .problem-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }

    .legal-container {
        padding: 40px 30px;
    }

    .kolekcja-card,
    .card-large,
    .card-medium {
        flex: 1 1 100%;
        transform: none;
    }
}