:root {
    --color-primary: #1a365d;
    --color-secondary: #2c5282;
    --color-accent: #ed8936;
    --color-light: #f7fafc;
    --color-dark: #1a202c;
    --color-gray: #718096;
    --color-border: #e2e8f0;
    --color-bg-alt: #edf2f7;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: #fff;
}

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.ad-disclosure {
    background: var(--color-bg-alt);
    padding: 8px 24px;
    font-size: 12px;
    color: var(--color-gray);
    text-align: center;
}

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

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

.nav-link {
    font-size: 15px;
    color: var(--color-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-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(--color-dark);
    transition: all 0.3s ease;
}

.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    min-width: 320px;
    padding-left: 40px;
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-accent);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-gray);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-image-wrapper {
    flex: 1.2;
    min-width: 400px;
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    box-shadow: 20px 20px 0 var(--color-bg-alt);
}

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

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

.btn-primary:hover {
    background: #dd6b20;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 137, 54, 0.35);
}

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

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

.section {
    padding: 80px 0;
}

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

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

.section-header {
    margin-bottom: 50px;
}

.section-header-offset {
    padding-left: 60px;
    position: relative;
}

.section-header-offset::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: var(--color-accent);
}

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

.section-dark .section-title {
    color: #fff;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 600px;
}

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

.features-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.feature-card:nth-child(2) {
    transform: translateY(40px);
}

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

.feature-card:nth-child(2):hover {
    transform: translateY(32px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.feature-text {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.7;
}

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

.service-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    display: flex;
    gap: 24px;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid transparent;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-left-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-bg-alt);
    line-height: 1;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 15px;
    color: var(--color-gray);
    margin-bottom: 16px;
}

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

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-gray);
}

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

.about-image-col {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
}

.about-image-col::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    background: var(--color-accent);
    opacity: 0.12;
    border-radius: 8px;
    z-index: -1;
}

.about-content-col {
    flex: 1;
    min-width: 350px;
}

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

.about-list {
    list-style: none;
    margin: 24px 0;
}

.about-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 3px;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: 8px;
    min-width: 140px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray);
    margin-top: 4px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 36px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 120px;
    color: var(--color-bg-alt);
    position: absolute;
    top: 10px;
    left: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}

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

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-role {
    font-size: 14px;
    color: var(--color-gray);
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    opacity: 0.08;
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 32px;
    text-align: center;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    transition: border-color 0.3s ease;
    background: #fff;
}

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

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

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

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

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

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

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.footer-links {
    list-style: none;
}

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

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

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

.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: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

.footer-legal a:hover {
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

.page-header {
    padding: 140px 0 60px;
    background: var(--color-bg-alt);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
}

.page-breadcrumb {
    font-size: 14px;
    color: var(--color-gray);
    margin-top: 12px;
}

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

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

.prose {
    max-width: 800px;
}

.prose h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 40px 0 16px;
}

.prose h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 32px 0 12px;
}

.prose p {
    margin-bottom: 18px;
    color: var(--color-gray);
}

.prose ul,
.prose ol {
    margin: 18px 0;
    padding-left: 24px;
    color: var(--color-gray);
}

.prose li {
    margin-bottom: 10px;
}

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

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

.contact-info-item {
    margin-bottom: 32px;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-value {
    font-size: 18px;
    color: var(--color-dark);
}

.contact-map-placeholder {
    flex: 1.5;
    min-width: 350px;
    height: 400px;
    background: var(--color-bg-alt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
}

.thanks-content {
    text-align: center;
    padding: 80px 24px;
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.thanks-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 32px;
}

.disclaimer-box {
    background: var(--color-bg-alt);
    padding: 24px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid var(--color-accent);
}

.disclaimer-box p {
    font-size: 14px;
    color: var(--color-gray);
    margin: 0;
}

.services-full-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-full-item {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    align-items: center;
}

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

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

.service-full-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--color-bg-alt);
}

.service-full-content {
    flex: 2;
    min-width: 300px;
}

.service-full-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.service-full-desc {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-full-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
}

.service-full-price span {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-gray);
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-content {
        padding-left: 20px;
    }

    .hero-image-wrapper {
        min-width: 100%;
    }

    .section-header-offset {
        padding-left: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-card:nth-child(2) {
        transform: none;
    }

    .feature-card:nth-child(2):hover {
        transform: translateY(-8px);
    }

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

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

    .footer-legal {
        justify-content: center;
    }
}
