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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #0ea5e9;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --border-color: #e2e8f0;
    --success-color: #2ECC71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.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(--primary-color);
}

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    display: block;
}

.hero-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 0 auto;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cta-primary,
.cta-large {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover,
.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-large {
    background: var(--primary-color);
    color: #ffffff;
    padding: 18px 45px;
    font-size: 19px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

section {
    padding: 90px 20px;
}

.dark-bg {
    background: var(--dark-bg);
    color: #ffffff;
}

.light-bg {
    background: var(--light-bg);
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-section p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-block {
    padding: 100px 20px;
}

.split-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

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

.content-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.content-visual {
    flex: 1;
    min-width: 300px;
}

.content-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.services-preview {
    padding: 100px 20px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.12);
}

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

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

.service-card h4 {
    font-size: 21px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    text-decoration: underline;
}

.case-story h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.case-story p {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.inline-cta {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-top: 10px;
}

.inline-cta:hover {
    text-decoration: underline;
}

.trust-section {
    padding: 90px 20px;
}

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

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 17px;
    color: var(--text-secondary);
}

.testimonials-block {
    padding: 100px 20px;
}

.testimonials-block h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 10px;
}

.quote {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.approach-section {
    padding: 100px 20px;
}

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

.form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
}

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

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.final-cta {
    padding: 90px 20px;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 35px;
}

.main-footer {
    background: #1e293b;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background: var(--primary-color);
    color: #ffffff;
}

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

.btn-cookie:hover {
    opacity: 0.9;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 19px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 20px;
}

.service-block {
    max-width: 1100px;
    margin: 0 auto 80px;
}

.service-block.alternate .service-content {
    flex-direction: row-reverse;
}

.service-header {
    margin-bottom: 35px;
}

.service-title-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service-title-group h2 {
    font-size: 34px;
    color: var(--text-primary);
}

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

.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.service-description {
    flex: 1;
    min-width: 300px;
}

.service-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.service-description h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--text-primary);
}

.service-description ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.service-description ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.services-cta {
    padding: 80px 20px;
}

.services-cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 35px;
}

.about-story {
    padding: 90px 20px;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-approach {
    padding: 90px 20px;
}

.about-approach h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.approach-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-values {
    padding: 90px 20px;
}

.about-values h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

.values-list {
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.value-item p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-team {
    padding: 90px 20px;
}

.about-team h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 25px;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
}

.about-industries {
    padding: 90px 20px;
}

.about-industries h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-tag {
    background: var(--light-bg);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.about-commitment {
    padding: 90px 20px;
}

.about-commitment h2 {
    font-size: 34px;
    margin-bottom: 30px;
}

.about-commitment p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-cta {
    padding: 80px 20px;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 35px;
}

.contact-content {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

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

.contact-map h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-faq {
    padding: 80px 20px;
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-cta {
    padding: 80px 20px;
}

.contact-cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 17px;
    margin-bottom: 35px;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.thanks-info {
    margin-bottom: 50px;
}

.thanks-info p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-selected {
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    margin-bottom: 50px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

.thanks-resources {
    padding: 80px 20px;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.resource-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.resource-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.resource-link:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 80px 20px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.legal-content h4 {
    font-size: 18px;
    margin: 20px 0 12px;
    color: var(--text-primary);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-secondary);
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 25px;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    section {
        padding: 60px 20px;
    }

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

    .service-title-group {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
