:root {
    --primary: #1a2f4b;
    --secondary: #c8a962;
    --accent: #e8d5a3;
    --dark: #0d1a2d;
    --light: #f8f6f1;
    --text: #2c3e50;
    --text-light: #6b7c8f;
    --gradient-start: #1a2f4b;
    --gradient-end: #2d4a6f;
    --shadow: 0 8px 32px rgba(26, 47, 75, 0.12);
    --shadow-lg: 0 16px 48px rgba(26, 47, 75, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 26, 45, 0.95);
    backdrop-filter: blur(12px);
    padding: 0 20px;
    transition: all 0.3s ease;
}

.nav-wrapper.scrolled {
    background: var(--dark);
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(200,169,98,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(200,169,98,0.08)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(200,169,98,0.06)" stroke-width="0.5"/></svg>') center/cover no-repeat;
    opacity: 0.4;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 169, 98, 0.2);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero h1 span {
    color: var(--secondary);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    position: relative;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 98, 0.4);
    color: var(--dark);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: 15px;
}

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

.btn-dark {
    background: var(--primary);
    color: #fff;
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-white {
    background: #fff;
}

.section-dark {
    background: var(--primary);
    color: #fff;
}

.section-gradient {
    background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-dark .section-header h2 {
    color: #fff;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* Story Section */
.story-section {
    background: #fff;
    position: relative;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-content.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.story-image {
    flex: 1;
    position: relative;
}

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

.story-image::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--secondary);
    border-radius: 16px;
    z-index: -1;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #f8f6f1 0%, #efe9db 100%);
    position: relative;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.problem-card {
    flex: 1 1 300px;
    max-width: 380px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--accent) 100%);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--secondary);
}

.problem-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Insight Section */
.insight-section {
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.insight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200, 169, 98, 0.08) 0%, transparent 70%);
}

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

.insight-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
}

.insight-quote::before,
.insight-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.5;
    position: absolute;
    font-family: Georgia, serif;
}

.insight-quote::before {
    top: -20px;
    left: -30px;
}

.insight-quote::after {
    bottom: -40px;
    right: -30px;
}

.insight-author {
    text-align: center;
    color: var(--secondary);
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    background: #fff;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.benefit-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.benefit-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #fff 0%, var(--light) 100%);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 340px;
    max-width: 400px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--secondary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.author-info h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Services Section */
.services-section {
    background: var(--light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 3px solid var(--secondary);
}

.service-card.featured::before {
    content: 'Najpopularniejszy';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
}

.service-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
    padding: 35px 30px;
    text-align: center;
}

.service-header h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.service-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.service-body {
    padding: 35px 30px;
}

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

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-body .btn {
    width: 100%;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1" x="0" y="0" width="100" height="100"/></svg>');
    background-size: 50px 50px;
}

.form-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.form-text {
    flex: 1;
    color: #fff;
}

.form-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.form-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-benefits li::before {
    content: '★';
    color: var(--secondary);
    font-size: 1.2rem;
}

.form-container {
    flex: 1;
    max-width: 480px;
}

.contact-form {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(200, 169, 98, 0.15);
}

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

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Urgency Section */
.urgency-section {
    background: var(--secondary);
    padding: 60px 0;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.urgency-content p {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.urgency-content .btn {
    background: var(--dark);
    color: #fff;
}

.urgency-content .btn:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* CTA Section */
.cta-section {
    background: var(--dark);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.sticky-cta .btn {
    padding: 12px 30px;
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

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

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

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

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

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

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-cookie-accept {
    background: var(--primary);
    color: #fff;
}

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

/* About Page */
.page-header {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 150px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    margin-top: 50px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Contact Page */
.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1 1 250px;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

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

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 40px 20px;
}

.thanks-content {
    text-align: center;
    background: #fff;
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 550px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.thanks-content h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

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

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--dark);
    padding: 80px 30px 40px;
    transition: right 0.4s ease;
    z-index: 1001;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 25px;
}

.mobile-nav ul a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-nav {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

.close-nav::before,
.close-nav::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 2px;
    background: #fff;
}

.close-nav::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-nav::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .hero-stats {
        justify-content: center;
    }

    .story-content,
    .story-content.reverse {
        flex-direction: column;
    }

    .story-image::after {
        display: none;
    }

    .form-wrapper {
        flex-direction: column;
    }

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

    .form-benefits {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

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

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

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

    .sticky-cta {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        padding: 20px;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .thanks-content {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

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

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

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