:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --light: #f8f9fa;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --border: #dfe6e9;
    --shadow: rgba(0, 0, 0, 0.1);
    --fallback-dark: #2d3436;
    --fallback-light: #b2bec3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
}

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

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

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

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
}

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

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

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

.ad-disclosure {
    background: var(--light);
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--fallback-dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 20px;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

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

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

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

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

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

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

.section-accent {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: var(--light);
    opacity: 0.9;
}

/* Story Section */
.story-section {
    padding: 120px 0;
}

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

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    background-color: var(--fallback-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px var(--shadow);
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

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

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

.story-highlight {
    background: var(--light);
    padding: 25px;
    border-left: 4px solid var(--accent);
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.story-highlight p {
    font-style: italic;
    margin: 0;
    color: var(--text);
}

/* Problem Section */
.problem-section {
    background: var(--secondary);
    padding: 100px 0;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    flex: 1 1 calc(50% - 15px);
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.problem-card p {
    color: var(--light);
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

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

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

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    min-width: 80px;
}

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

.benefit-content p {
    color: var(--text-light);
}

/* Services/Products Section */
.services-section {
    padding: 120px 0;
    background: var(--light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 220px;
    background-color: var(--fallback-light);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

/* Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
}

.testimonial-card:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--white);
    border: 2px solid var(--border);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--fallback-light);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--secondary);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

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

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #d63653 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--white);
    color: var(--accent);
    font-size: 1.1rem;
    padding: 18px 45px;
}

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

/* Form Section */
.form-section {
    padding: 120px 0;
    background: var(--light);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

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

.form-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

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

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

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

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

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

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

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

/* About Page */
.page-hero {
    padding: 160px 0 80px;
    background: var(--primary);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero p {
    color: var(--light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: var(--fallback-light);
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.values-section {
    padding: 100px 0;
    background: var(--light);
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

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

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

/* Contact Page */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
}

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

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-details p {
    color: var(--text-light);
}

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

/* Services Page */
.services-page-section {
    padding: 100px 0;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detailed-card {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
}

.service-detailed-card:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--white);
    border: 2px solid var(--border);
}

.service-detailed-image {
    width: 350px;
    height: 280px;
    background-color: var(--fallback-light);
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detailed-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detailed-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-detailed-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

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

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

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

.thanks-content p {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Legal Pages */
.legal-section {
    padding: 100px 0;
}

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

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

.legal-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text);
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text);
    list-style: disc;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--light);
    padding: 80px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-col p {
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 10px;
}

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

.footer-links a {
    color: var(--light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: var(--light);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Disclaimer */
.disclaimer {
    background: var(--light);
    padding: 40px;
    margin: 60px 0;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
}

.disclaimer h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 -5px 30px var(--shadow);
    display: none;
}

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

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

.cookie-text {
    color: var(--light);
    flex: 1;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: #d63653;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .story-content,
    .about-grid,
    .form-wrapper,
    .contact-grid {
        flex-direction: column;
    }

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

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

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }
}

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

    .mobile-toggle {
        display: flex;
    }

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

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

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

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

    .benefit-item {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card,
    .testimonial-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detailed-card,
    .service-detailed-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detailed-image {
        width: 100%;
        height: 200px;
    }

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

    .trust-grid {
        gap: 30px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-col {
        flex: 1 1 100%;
    }

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