:root {
    --primary: #1a2b4c;
    --secondary: #3d5a80;
    --accent: #ee6c4d;
    --light: #f7f9fc;
    --dark: #0d1b2a;
    --text: #293241;
    --text-light: #5c6b7a;
    --white: #ffffff;
    --success: #2a9d8f;
    --border: #e0e6ed;
    --shadow: rgba(13, 27, 42, 0.08);
    --shadow-hover: rgba(13, 27, 42, 0.15);
}

* {
    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);
}

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

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

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

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

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

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

.ad-disclosure {
    background: var(--light);
    padding: 8px 16px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-link {
    font-size: 15px;
    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%;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::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" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: #d85a3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(238, 108, 77, 0.4);
}

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

.btn-secondary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

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

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

.section {
    padding: 100px 0;
}

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

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

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

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

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

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

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

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

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

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
}

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

.problem-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.problem-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

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

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

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

.story-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 16px;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
}

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

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

.story-text .highlight {
    font-size: 20px;
    color: var(--accent);
    font-weight: 600;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
    margin: 30px 0;
}

.insight-section {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
}

.insight-content {
    text-align: center;
    color: var(--white);
}

.insight-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.insight-content p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
}

.insight-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 8px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
}

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

.service-image {
    height: 200px;
    background-color: var(--secondary);
    overflow: hidden;
}

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

.service-content {
    padding: 32px;
}

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

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
}

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

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

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

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

.benefit-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--success) 0%, #4ade80 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.benefit-text h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 15px;
    color: var(--text-light);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #f4a261 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-container h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--white);
    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 4px rgba(238, 108, 77, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 16px;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--white);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

.disclaimer {
    background: var(--primary);
    padding: 30px 0;
    text-align: center;
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    flex: 1;
}

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

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

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

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

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

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.content-section h2:first-child {
    margin-top: 0;
}

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

.content-section ul {
    margin: 16px 0 16px 24px;
    color: var(--text);
}

.content-section li {
    margin-bottom: 8px;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-text {
    flex: 1;
}

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

.about-intro-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 16px;
    overflow: hidden;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
    text-align: center;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

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

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

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

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

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-details h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 6px;
}

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

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

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

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--white);
    fill: none;
    stroke-width: 3;
}

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

.thanks-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    flex-direction: column;
    gap: 16px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.sticky-cta .btn {
    box-shadow: 0 10px 40px rgba(238, 108, 77, 0.4);
}

@media (max-width: 992px) {
    .hero-content,
    .story-content,
    .about-intro {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 40px;
    }

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

    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-grid {
        gap: 40px;
    }
}

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

    .hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

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

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