:root {
    --color-primary: #1a5276;
    --color-secondary: #2980b9;
    --color-accent: #e74c3c;
    --color-light: #ecf0f1;
    --color-dark: #2c3e50;
    --color-white: #ffffff;
    --color-text: #34495e;
    --color-muted: #7f8c8d;
    --color-success: #27ae60;
    --color-bg-alt: #f8f9fa;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    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 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.header-top {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ad-disclosure {
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.header-main {
    padding: 15px 0;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.nav-main a {
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-main a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    margin: 5px 0;
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 700px;
}

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

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.8;
}

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

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

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

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

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

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

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

.section {
    padding: 100px 0;
}

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

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

.section-title {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.intro-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: var(--color-light);
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--color-dark);
}

.intro-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--color-white);
}

.problem-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a252f 100%);
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

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

.problem-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

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

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

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

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-light);
}

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

.price-label {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.testimonials-section {
    background: var(--color-bg-alt);
    position: relative;
}

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

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

.testimonial-quote {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

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

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

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--color-dark);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

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

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--color-primary);
}

.trust-badge h4 {
    font-size: 1.1rem;
    color: var(--color-dark);
}

.trust-badge p {
    font-size: 0.9rem;
    color: var(--color-muted);
    max-width: 180px;
}

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

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

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background: var(--color-bg-alt);
}

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

.form-info {
    flex: 1;
}

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

.form-info p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.benefit-icon {
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.form-container {
    flex: 1;
    background: var(--color-white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

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

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

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

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

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

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

.about-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-white) 100%);
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.about-hero p {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 700px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1.2;
}

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

.about-text p {
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.about-image {
    flex: 1;
    background-color: var(--color-light);
    border-radius: 16px;
    overflow: hidden;
    min-height: 350px;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

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

.value-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--color-primary);
}

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

.value-card p {
    font-size: 0.95rem;
    color: var(--color-muted);
}

.page-hero {
    padding-top: 150px;
    padding-bottom: 60px;
    background: var(--color-bg-alt);
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--color-muted);
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: var(--color-light);
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.service-detail-content p {
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

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

.contact-info {
    flex: 1;
}

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

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

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

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

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.contact-item p {
    color: var(--color-muted);
}

.contact-form-container {
    flex: 1;
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

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

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

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

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

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

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

.thanks-content p {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 35px;
}

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

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

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

.footer-col a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.disclaimer {
    background: var(--color-light);
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 25px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-secondary);
    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: var(--transition);
}

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

.cookie-accept:hover {
    background: #219a52;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.sticky-cta a:hover {
    transform: scale(1.05);
    background: #c0392b;
}

@media (max-width: 992px) {
    .intro-block,
    .form-wrapper,
    .about-content,
    .contact-wrapper {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-main {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-medium);
        display: none;
    }

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

    .nav-toggle {
        display: block;
    }

    .hero {
        padding-top: 100px;
    }

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

    .section {
        padding: 60px 0;
    }

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

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

    .header-top-inner {
        justify-content: center;
        text-align: center;
    }
}
