:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--secondary);
    background: var(--white);
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 10px;
}

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

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

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

.btn-accent:hover {
    background: #d97706;
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    font-weight: 500;
    color: var(--gray);
    position: relative;
}

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

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    padding: 80px 30px 30px;
    z-index: 999;
}

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

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nav-mobile a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

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

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero h1 span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.hero-image {
    position: relative;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

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

/* Problem Section */
.problem {
    padding: 80px 20px;
    background: var(--secondary);
    color: var(--white);
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.problem h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    line-height: 1.3;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}

.problem-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 1.2rem;
}

.problem-item p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 80px 20px;
    background: var(--white);
}

.solution-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.solution h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.solution-header p {
    color: var(--gray);
    font-size: 1.05rem;
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.solution-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.solution-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.5rem;
}

.solution-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
}

.solution-card p {
    color: var(--gray);
}

/* Story Section */
.story {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

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

.story-intro {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gray);
    text-align: center;
    margin-bottom: 48px;
    padding: 0 20px;
    position: relative;
}

.story-intro::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.story-block {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.story-block h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.story-block p {
    color: var(--gray);
    margin-bottom: 16px;
}

.story-block p:last-child {
    margin-bottom: 0;
}

.story-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin: 32px 0;
}

.story-image img {
    width: 100%;
}

/* Trust Section */
.trust {
    padding: 80px 20px;
    background: var(--white);
}

.trust-header {
    text-align: center;
    margin-bottom: 48px;
}

.trust h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.trust-stat {
    text-align: center;
    padding: 24px 32px;
    background: var(--light);
    border-radius: var(--radius);
    min-width: 140px;
}

.trust-stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    background: var(--light);
    border-radius: var(--radius);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.trust-badge-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.9rem;
}

.trust-badge span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: var(--secondary);
    color: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    position: relative;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.9);
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.testimonial-rating {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 4px;
}

.testimonial-rating span {
    color: var(--accent);
    font-size: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: var(--white);
}

.benefits-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.benefits h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius);
    align-items: center;
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
}

.benefit-content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--secondary);
}

.benefit-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Services/Pricing Section */
.services {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.services h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border: 2px solid var(--primary);
}

.service-card.featured::before {
    content: 'Najpopularniejszy';
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-card-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-light);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.service-card-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

.service-price {
    margin-bottom: 24px;
}

.service-price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price-currency {
    font-size: 1.2rem;
    color: var(--gray);
}

.service-price-period {
    font-size: 0.9rem;
    color: var(--gray);
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    color: var(--secondary);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 600;
}

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

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: var(--secondary);
    color: var(--white);
}

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

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.form-header p {
    color: rgba(255,255,255,0.8);
}

.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    color: var(--secondary);
}

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

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

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

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray);
}

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

.urgency h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.urgency p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.timer-block {
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    min-width: 70px;
}

.timer-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.timer-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq h2 {
    font-size: 1.8rem;
    color: var(--secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--secondary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-section .btn-accent {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: none;
    z-index: 900;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta-text {
    display: none;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text p {
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

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

/* Page Headers */
.page-header {
    padding: 140px 20px 60px;
    background: var(--light);
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: 60px 20px;
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--secondary);
}

.page-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 16px;
    color: var(--secondary);
}

.page-content p {
    color: var(--gray);
    margin-bottom: 16px;
}

.page-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.page-content li {
    color: var(--gray);
    margin-bottom: 8px;
    list-style: disc;
}

/* About Page */
.about-story {
    padding: 60px 20px;
    background: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 16px;
}

.about-values {
    padding: 60px 20px;
    background: var(--light);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.value-card p {
    color: var(--gray);
}

/* Contact Page */
.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding: 32px;
    background: var(--light);
    border-radius: var(--radius);
}

.contact-info h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--secondary);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

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

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--secondary);
}

.contact-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.thanks-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Services Page */
.services-page {
    padding: 60px 20px;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.services-intro p {
    color: var(--gray);
    font-size: 1.05rem;
}

/* Responsive */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 12px);
    }

    .solution-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .solution-card {
        flex: 1 1 calc(50% - 12px);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 12px);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .sticky-cta-text {
        display: block;
    }

    .sticky-cta .btn {
        width: auto;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .hero {
        padding: 160px 20px 100px;
    }

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

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

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

    .hero-image {
        flex: 1;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-subtitle {
        margin-left: 0;
    }

    .section-label {
        font-size: 0.85rem;
    }

    .problem h2,
    .solution h2,
    .trust h2,
    .testimonials h2,
    .benefits h2,
    .services h2,
    .faq h2 {
        font-size: 2.2rem;
    }

    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
    }

    .value-card {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .solution-card {
        flex: 1 1 calc(33.333% - 16px);
    }

    .service-card {
        flex: 1 1 calc(33.333% - 16px);
    }
}
