* {
    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: #2c3e50;
    background: #ffffff;
}

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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: 24px;
    font-weight: 700;
    color: #1a56db;
    text-decoration: none;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a56db;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
}

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

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

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

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

.cookie-content a {
    color: #60a5fa;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: #1a56db;
    color: #ffffff;
}

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

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

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

.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 20px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
}

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

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

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,86,219,0.3);
}

.btn-primary-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #1a56db;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #1a56db;
}

.btn-secondary:hover {
    background: #1a56db;
    color: #ffffff;
}

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

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    color: #1e293b;
    margin-bottom: 24px;
}

.split-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

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

.insight-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-card {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.insight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 16px;
}

.insight-card p {
    color: #64748b;
    line-height: 1.7;
}

.services-showcase {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #64748b;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 36px;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: #1a56db;
    box-shadow: 0 8px 30px rgba(26,86,219,0.15);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: #1a56db;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #1a56db;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a56db;
    margin-bottom: 24px;
}

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

.service-features li {
    padding: 10px 0;
    color: #475569;
    position: relative;
    padding-left: 28px;
}

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

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #1a56db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #1e40af;
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    color: #1e293b;
    margin-bottom: 24px;
}

.form-info p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 32px;
    color: #1a56db;
    margin-bottom: 4px;
}

.trust-item span {
    color: #64748b;
    font-size: 16px;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.selected-service-info {
    padding: 16px;
    background: #f0f9ff;
    border-left: 4px solid #1a56db;
    border-radius: 6px;
    margin-bottom: 20px;
}

.selected-service-info p {
    margin: 4px 0;
    color: #1e293b;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background: #1e40af;
}

.form-privacy {
    font-size: 14px;
    color: #64748b;
    text-align: center;
}

.form-privacy a {
    color: #1a56db;
    text-decoration: none;
}

.testimonials-section {
    padding: 100px 0;
}

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

.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial {
    background: #f8fafc;
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid #1a56db;
}

.testimonial p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #64748b;
    font-size: 15px;
}

.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e40af 0%, #1a56db 100%);
    color: #ffffff;
    text-align: center;
}

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-section h3 {
    margin-bottom: 16px;
    font-size: 20px;
}

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

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

.btn-sticky {
    display: block;
    padding: 16px 32px;
    background: #1a56db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(26,86,219,0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26,86,219,0.5);
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #64748b;
}

.about-story {
    padding: 100px 0;
}

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

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.value-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    color: #1a56db;
    margin-bottom: 16px;
}

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

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

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

.team-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

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

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

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

.team-member h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 8px;
}

.member-role {
    color: #1a56db;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

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

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

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child):before {
    content: "";
    position: absolute;
    left: 90px;
    top: 40px;
    width: 2px;
    height: calc(100% + 40px);
    background: #e2e8f0;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #1a56db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #475569;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 16px;
}

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

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

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 16px;
}

.price-tag {
    display: inline-block;
    padding: 10px 20px;
    background: #f0f9ff;
    color: #1a56db;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: #1e293b;
    margin: 28px 0 16px;
}

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

.detailed-features li {
    padding: 12px 0;
    color: #475569;
    position: relative;
    padding-left: 32px;
}

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

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

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.comparison-section h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 16px;
}

.comparison-section p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
}

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

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
}

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

.contact-info-section h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 12px;
}

.contact-block p,
.contact-address {
    color: #475569;
    line-height: 1.8;
}

.contact-block a {
    color: #1a56db;
    text-decoration: none;
}

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

.contact-note {
    padding: 20px;
    background: #f0f9ff;
    border-left: 4px solid #1a56db;
    border-radius: 6px;
}

.contact-note p {
    color: #475569;
    margin: 0;
}

.contact-note a {
    color: #1a56db;
    text-decoration: none;
    font-weight: 600;
}

.contact-map-section {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 24px;
    color: #ffffff;
}

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

.contact-cta h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    background: #f0f9ff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.service-confirmation p {
    color: #475569;
    margin: 8px 0;
}

.selected-service-name {
    color: #1a56db;
    font-weight: 700;
    font-size: 18px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.step {
    padding: 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1a56db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 12px;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.thanks-contact {
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.thanks-contact p {
    color: #64748b;
    margin-bottom: 8px;
}

.thanks-contact a {
    color: #1a56db;
    text-decoration: none;
    font-weight: 600;
}

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

.legal-content h2 {
    font-size: 32px;
    color: #1e293b;
    margin: 48px 0 24px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    color: #1e293b;
    margin: 32px 0 16px;
}

.legal-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 24px 24px;
    color: #475569;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content a {
    color: #1a56db;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 600;
}

.cookie-table td {
    color: #475569;
}

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

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

    .nav-toggle {
        display: block;
    }

    .hero-content,
    .split-layout,
    .form-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .split-layout.reverse {
        flex-direction: column;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
    }

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

    .service-detail-layout {
        flex-direction: column;
    }

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

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

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

    .steps-grid {
        grid-template-columns: 1fr;
    }
}