:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-hover: #ff6b6b;
    --light: #f8f9fa;
    --dark: #0f0f23;
    --text: #2d2d44;
    --text-light: #6c6c8a;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-strong: 0 8px 40px rgba(0,0,0,0.18);
    --transition: all 0.3s ease;
}

* {
    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(--white);
    font-size: 16px;
}

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

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

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

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

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

header {
    background: var(--primary);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

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

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

nav a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.9;
}

nav a:hover {
    opacity: 1;
    color: var(--accent);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--dark) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

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

.hero-text {
    flex: 1;
    min-width: 300px;
    color: var(--white);
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

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

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.hero-image svg {
    max-width: 450px;
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233,69,96,0.3);
    color: var(--white);
}

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

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

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

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

section {
    padding: 80px 0;
}

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

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

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

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

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.mb-60 {
    margin-bottom: 60px;
}

.problem-section {
    padding: 100px 0;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.problem-item h3 {
    color: var(--primary);
}

.story-section {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231a1a2e" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

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

.story-text {
    flex: 1.2;
    min-width: 300px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-image {
    flex: 1;
    min-width: 280px;
}

.story-image svg {
    width: 100%;
    max-width: 400px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.testimonials {
    padding: 100px 0;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

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

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

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

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

.services-section {
    padding: 100px 0;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 80px;
    height: 80px;
    fill: var(--white);
    opacity: 0.9;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

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

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

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.urgency-banner {
    padding: 40px 0;
    text-align: center;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.urgency-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.countdown-item small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.form-section {
    padding: 100px 0;
}

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

.form-info {
    flex: 1;
    min-width: 300px;
}

.form-info h2 {
    margin-bottom: 25px;
}

.form-benefits {
    list-style: none;
    margin-top: 30px;
}

.form-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-benefits li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.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 #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

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

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

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.trust-badge svg {
    width: 50px;
    height: 50px;
    fill: var(--accent);
    margin-bottom: 10px;
}

.trust-badge p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.faq-section {
    padding: 100px 0;
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.cta-inline {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    margin: 60px 0;
}

.cta-inline h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-inline p {
    opacity: 0.9;
    margin-bottom: 25px;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

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

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    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;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
    z-index: 999;
}

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

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

.sticky-cta-text {
    font-weight: 600;
    color: var(--primary);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    z-index: 10000;
    display: none;
}

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

.cookie-text {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text);
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.cookie-reject {
    background: var(--light);
    color: var(--text);
}

.cookie-reject:hover {
    background: #e0e0e0;
}

.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

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

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

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

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

.page-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.page-content ul li {
    margin-bottom: 10px;
    color: var(--text);
}

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

.contact-info {
    flex: 1;
    min-width: 280px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-details h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

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

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.thanks-card {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-strong);
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

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

.thanks-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.thanks-service {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.thanks-service strong {
    color: var(--accent);
}

.insight-section {
    position: relative;
    overflow: hidden;
}

.insight-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    opacity: 0.05;
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.about-story {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-story-text {
    flex: 1.5;
    min-width: 300px;
}

.about-story-image {
    flex: 1;
    min-width: 280px;
}

.about-values {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
    }

    nav.active {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding-top: 100px;
    }

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

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

    .form-container {
        padding: 30px 20px;
    }

    .countdown-item span {
        font-size: 1.5rem;
    }

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

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

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

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

    .testimonial-card {
        min-width: 100%;
    }
}
