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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
}

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

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

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav {
    display: flex;
    gap: 32px;
}

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

.nav a:hover {
    color: #2563eb;
}

.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 120px 0 80px;
}

.hero-content {
    max-width: 720px;
}

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

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary-large {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 20px 48px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #2563eb;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #2563eb;
    color: #ffffff;
}

.stat-section {
    background: #f8fafc;
    padding: 80px 0;
}

.stat-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 48px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 12px;
}

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

.intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #374151;
    line-height: 1.8;
}

.problem-section {
    background: #1e293b;
    color: #ffffff;
    padding: 100px 0;
}

.problem-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

.solution-section {
    padding: 100px 0;
    background: #f8fafc;
}

.solution-wrapper {
    display: flex;
    align-items: center;
    gap: 64px;
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.solution-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #374151;
    line-height: 1.8;
}

.solution-text .btn-secondary {
    margin-top: 16px;
}

.solution-image {
    flex: 1;
    min-width: 300px;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-preview {
    padding: 100px 0;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 56px;
    text-align: center;
    font-weight: 700;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #f8fafc;
    padding: 36px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 20px;
}

.testimonial-section {
    background: #f8fafc;
    padding: 100px 0;
}

.testimonial-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.testimonial-block {
    background: #ffffff;
    padding: 32px;
    margin-bottom: 28px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #374151;
}

.testimonial-author {
    font-weight: 600;
    color: #4b5563;
}

.trust-section {
    padding: 100px 0;
    background: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 56px;
    text-align: center;
    font-weight: 700;
}

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

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #2563eb;
}

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

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.cta-section > .container-narrow > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
    opacity: 0.95;
    line-height: 1.7;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.final-section {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.final-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    font-weight: 700;
}

.final-section p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.7;
}

.final-section .btn-primary-large {
    margin-top: 24px;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 32px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.page-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero .lead {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-simple {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 80px 0 40px;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 42px;
    font-weight: 800;
}

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

.story-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 700;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #374151;
    line-height: 1.8;
}

.mission-section {
    padding: 100px 0;
    background: #f8fafc;
}

.mission-wrapper {
    display: flex;
    align-items: center;
    gap: 64px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.mission-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #374151;
    line-height: 1.8;
}

.mission-image {
    flex: 1;
    min-width: 300px;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.team-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 56px;
    text-align: center;
    font-weight: 700;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
}

.team-member {
    text-align: center;
    max-width: 320px;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: #e5e7eb;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: #4b5563;
    line-height: 1.6;
}

.values-section {
    padding: 100px 0;
    background: #f8fafc;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2563eb;
}

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

.numbers-section {
    padding: 100px 0;
    background: #ffffff;
}

.numbers-section h2 {
    font-size: 38px;
    margin-bottom: 56px;
    text-align: center;
    font-weight: 700;
}

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

.number-card {
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.big-number {
    font-size: 52px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 12px;
}

.number-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.cta-simple {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-detail {
    padding: 100px 0;
    background: #ffffff;
}

.service-detail.alt {
    background: #f8fafc;
}

.service-layout {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-price-large {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-intro {
    font-size: 19px;
    color: #374151;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #374151;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-content .btn-primary {
    margin-top: 24px;
}

.service-image {
    flex: 1;
    min-width: 320px;
    position: sticky;
    top: 100px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.pricing-info {
    padding: 80px 0;
    background: #fffbeb;
    border-top: 2px solid #fcd34d;
    border-bottom: 2px solid #fcd34d;
}

.pricing-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-info p {
    font-size: 17px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.cta-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

.cta-form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.cta-form-section > .container-narrow > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
    opacity: 0.95;
}

.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #2563eb;
}

.contact-detail p {
    font-size: 17px;
    color: #374151;
    line-height: 1.7;
}

.contact-detail a {
    color: #2563eb;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    background: #f8fafc;
    padding: 20px;
    border-radius: 6px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 28px;
    font-weight: 700;
}

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    background: #ffffff;
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 6px;
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.thanks-section {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
    color: #10b981;
}

.thanks-lead {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 48px;
}

.thanks-details {
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.thanks-steps {
    list-style: none;
    counter-reset: step;
}

.thanks-steps li {
    counter-increment: step;
    padding-left: 48px;
    margin-bottom: 20px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
}

.thanks-steps li:before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    background: #2563eb;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-info {
    background: #fffbeb;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 15px;
    color: #78350f;
    line-height: 1.6;
}

.thanks-info a {
    color: #2563eb;
    font-weight: 600;
}

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

.next-steps-section {
    padding: 80px 0;
    background: #f8fafc;
}

.next-steps-section h2 {
    font-size: 32px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.next-steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.next-step-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.next-step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.next-step-card p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.next-step-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.next-step-card a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

.legal-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 16px;
    color: #374151;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav {
        gap: 16px;
        font-size: 14px;
    }

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

    .hero-lead {
        font-size: 18px;
    }

    .stat-grid {
        flex-direction: column;
        gap: 32px;
    }

    .solution-wrapper,
    .mission-wrapper,
    .service-layout,
    .contact-wrapper {
        flex-direction: column;
    }

    .service-image {
        position: static;
    }

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

    .service-card {
        min-width: 100%;
    }

    .trust-grid,
    .team-grid,
    .numbers-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .intro-content h2,
    .problem-section h2,
    .solution-text h2,
    .services-preview h2,
    .testimonial-section h2,
    .trust-section h2 {
        font-size: 28px;
    }
}
