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

:root {
    --primary: #FF6B9D;
    --secondary: #4A90E2;
    --accent: #FFD93D;
    --dark: #2C3E50;
    --light: #F8F9FA;
    --text: #333;
    --shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.nav-main {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-section {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
}

.cta-primary {
    background: var(--accent);
    color: var(--dark);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.section-story {
    padding: 5rem 8%;
    background: var(--light);
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
}

.story-title {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #555;
}

.section-problem {
    padding: 6rem 5%;
    background: white;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.problem-content {
    flex: 1;
}

.problem-visual {
    flex: 1;
    height: 400px;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

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

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.section-insight {
    padding: 5rem 5%;
    background: var(--secondary);
    color: white;
    text-align: center;
}

.insight-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.section-benefits {
    padding: 6rem 5%;
    background: var(--light);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    flex: 1 1 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-testimonials {
    padding: 6rem 5%;
    background: white;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.testimonial {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
}

.section-services {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 280px;
    background: white;
    color: var(--dark);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 1rem;
}

.section-urgency {
    padding: 4rem 5%;
    background: var(--accent);
    text-align: center;
}

.urgency-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.section-form {
    padding: 6rem 5%;
    background: var(--light);
}

.form-container {
    max-width: 600px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #ff4d7d;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 999;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.1);
}

.section-guarantee {
    padding: 5rem 5%;
    background: white;
    text-align: center;
}

.guarantee-box {
    max-width: 800px;
    margin: 2rem auto 0;
    background: var(--light);
    padding: 3rem;
    border-radius: 15px;
    border: 3px dashed var(--primary);
}

.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    flex: 1;
    margin-right: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.section-social-proof {
    padding: 5rem 5%;
    background: var(--secondary);
    color: white;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.section-transform {
    padding: 6rem 5%;
    background: white;
}

.transform-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.transform-side {
    flex: 1;
    text-align: center;
}

.transform-arrow {
    font-size: 4rem;
    color: var(--primary);
}

.transform-box {
    background: var(--light);
    padding: 3rem;
    border-radius: 15px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transform-box.after {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-page {
    min-height: 80vh;
    padding: 8rem 5%;
}

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

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    max-width: 600px;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.thanks-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.policy-page {
    padding: 8rem 5% 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.policy-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-heading {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-page {
    padding: 8rem 5% 5rem;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

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

.about-section {
    margin-bottom: 4rem;
}

.services-page {
    padding: 8rem 5% 5rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .section-problem {
        flex-direction: column;
    }

    .problem-visual {
        height: 250px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .transform-grid {
        flex-direction: column;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-text {
        margin-right: 0;
    }
}