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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #0f172a;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #22c55e;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-white);
}

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

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.btn-primary,
.btn-secondary,
.btn-sticky {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 16px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

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

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

.btn-full {
    width: 100%;
}

.main-nav {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo:hover {
    color: var(--primary-color);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px;
}

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

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
}

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

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    padding: 80px 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.intro-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--secondary-color);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
}

.services-preview {
    padding: 80px 20px;
    background: var(--bg-white);
}

.services-preview .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.trust-section {
    padding: 80px 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    max-width: 400px;
}

.testimonial-inline {
    padding: 60px 20px;
    background: var(--bg-light);
}

.testimonial-inline blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 16px;
    color: var(--text-light);
}

.all-services-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.all-services-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 18px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
}

.service-details h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-section-inline {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 25px;
}

.cta-section-inline .btn-secondary {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

.process-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.process-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--text-light);
}

.form-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--secondary-color);
}

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

.order-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.final-cta {
    padding: 80px 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.main-footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.btn-sticky {
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-sticky:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 14px;
    margin: 0;
    text-align: center;
}

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 14px;
}

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

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

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

.btn-cookie-alt:hover {
    background: var(--bg-white);
    color: var(--secondary-color);
}

.page-header {
    padding: 80px 20px 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.about-story,
.about-team,
.about-coverage {
    padding: 60px 20px;
    background: var(--bg-white);
}

.about-story h2,
.about-team h2,
.about-coverage h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-story p,
.about-team p,
.about-coverage p {
    font-size: 17px;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.7;
}

.about-values {
    padding: 80px 20px;
    background: var(--bg-light);
}

.about-values h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

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

.services-detailed {
    padding: 60px 20px;
    background: var(--bg-white);
}

.service-detail-card {
    margin-bottom: 50px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition);
}

.service-detail-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 25px rgba(37, 99, 235, 0.15);
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.service-features {
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 25px 0;
}

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

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

.services-cta {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.services-cta h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.services-cta p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.contact-info {
    padding: 60px 20px;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-color);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-message {
    padding: 60px 20px;
    background: var(--bg-light);
}

.contact-message h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-message p {
    font-size: 17px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.thanks-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-service {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
}

.thanks-next {
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--secondary-color);
}

.thanks-steps {
    counter-reset: step-counter;
    padding-left: 0;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding: 15px 0 15px 40px;
    position: relative;
    color: var(--text-color);
    font-size: 16px;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 15px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

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

.legal-content {
    padding: 60px 20px;
    background: var(--bg-white);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.legal-content ul {
    margin: 15px 0 20px 20px;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        box-shadow: none;
        padding: 0;
        gap: 30px;
    }

    .nav-menu li {
        margin: 0;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .services-preview .container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 280px;
    }

    .container-split {
        flex-direction: row;
    }

    .split-text,
    .split-visual {
        flex: 1;
    }

    .service-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .process-steps {
        flex-direction: row;
    }

    .process-step {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-item {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 58px;
    }
}
