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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a1a1a;
}

.hero-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111827;
}

.hero-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #374151;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #f3f4f6;
    color: #111827;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-secondary:hover {
    background: #e5e7eb;
}

.features-cards {
    background: #f9fafb;
    padding: 100px 40px;
}

.card-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.feature-card {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e5e7eb;
}

.feature-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #111827;
}

.feature-card p {
    margin: 0 24px 24px;
    color: #6b7280;
    line-height: 1.6;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

.services-cards-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 60px;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    gap: 40px;
}

.service-card.featured {
    background: #f9fafb;
    border: 2px solid #111827;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e5e7eb;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111827;
}

.service-content p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.7;
}

.specs-list {
    list-style: none;
    margin-bottom: 24px;
}

.specs-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #374151;
}

.specs-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #111827;
    font-weight: 700;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

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

.configurator-section {
    background: #111827;
    padding: 100px 40px;
    color: #ffffff;
}

.configurator-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.configurator-info {
    flex: 1;
}

.configurator-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.configurator-info p {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.step-number {
    width: 48px;
    height: 48px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-text {
    font-size: 16px;
}

.configurator-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111827;
}

.btn-submit {
    padding: 16px 32px;
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #374151;
}

.why-us-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.why-us-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

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

.benefit-item {
    flex: 1;
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.benefit-item p {
    color: #4b5563;
    line-height: 1.7;
}

.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

.disclaimer {
    margin-bottom: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #93c5fd;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
}

.page-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #111827;
}

.page-header p {
    font-size: 18px;
    color: #6b7280;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
}

.service-detail-content p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.7;
}

.specs-detailed h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #111827;
}

.specs-detailed ul {
    list-style: none;
    margin-bottom: 32px;
}

.specs-detailed li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #374151;
}

.specs-detailed li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
}

.cta-section {
    background: #f9fafb;
    padding: 80px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.cta-section p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.about-hero {
    background: #111827;
    color: #ffffff;
    padding: 100px 40px;
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 20px;
    color: #d1d5db;
}

.about-story {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #111827;
}

.story-text p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    background: #f9fafb;
    padding: 100px 40px;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.values-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
}

.value-card p {
    color: #4b5563;
    line-height: 1.7;
}

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.approach-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.approach-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-item.reverse {
    flex-direction: row-reverse;
}

.approach-item img {
    flex: 1;
    border-radius: 12px;
    object-fit: cover;
    background: #f3f4f6;
}

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #111827;
}

.approach-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.support-section {
    background: #111827;
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.support-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.support-content p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #111827;
}

.contact-header p {
    font-size: 18px;
    color: #6b7280;
}

.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111827;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.contact-note {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
}

.contact-note p {
    color: #4b5563;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

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

.location-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111827;
}

.location-section p {
    font-size: 16px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #111827;
}

.thanks-content > p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 60px;
    line-height: 1.7;
}

.thanks-info h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #111827;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-num {
    width: 56px;
    height: 56px;
    background: #111827;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    padding-top: 16px;
}

.thanks-service-info {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #111827;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #111827;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #111827;
}

.legal-page p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 16px;
    margin-left: 24px;
    color: #4b5563;
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.update-date {
    margin-top: 40px;
    font-style: italic;
    color: #6b7280;
}

@media (max-width: 1024px) {
    .hero-section,
    .configurator-wrapper,
    .contact-layout,
    .story-content,
    .service-card,
    .service-detail-card,
    .approach-item {
        flex-direction: column;
    }

    .card-grid,
    .benefits-layout,
    .values-cards {
        flex-direction: column;
    }

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

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