* {
    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: #333;
    background: #fff;
}

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    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 a {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
}

.hero-content {
    max-width: 550px;
    color: #fff;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.trust-indicators {
    padding: 60px 0;
    background: #f8fafc;
}

.indicators-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.indicator {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.indicator-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #10b981;
}

.indicator h3 {
    font-size: 1.1rem;
    color: #1e293b;
}

.problem-section {
    padding: 80px 0;
}

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

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

.split-content-left,
.split-content-right {
    flex: 1;
}

.split-image-left,
.split-image-right {
    flex: 1;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1e293b;
}

.split-content-left p,
.split-content-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 0;
    background: #f8fafc;
}

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

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

.section-header-centered p {
    font-size: 1.15rem;
    color: #64748b;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.service-info p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.centered-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2563eb;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #fff;
}

.how-it-works {
    padding: 80px 0;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1e293b;
}

.step-text p {
    font-size: 1rem;
    color: #64748b;
}

.testimonials-section {
    padding: 80px 0;
    background: #1e293b;
    color: #fff;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.8;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.form-header p {
    font-size: 1.05rem;
    color: #64748b;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group a {
    color: #2563eb;
    text-decoration: underline;
}

.btn-submit {
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.why-choose-us {
    padding: 80px 0;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.reasons-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.reason-block {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 5px solid #2563eb;
}

.reason-block h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.reason-block p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #fff;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

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

.sticky-cta-button {
    display: block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

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

.btn-reject {
    background: #64748b;
    color: #fff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 12px;
}

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

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

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

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

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

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
    color: #1e293b;
}

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

.problem-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #475569;
}

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

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s;
}

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

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

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

.guarantee-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.guarantee-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.guarantee-item p {
    color: #64748b;
    line-height: 1.7;
}

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

.cta-bottom-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-bottom-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.about-intro {
    padding: 80px 0;
}

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

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1e293b;
}

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

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

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

.team-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 30px;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
}

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

.why-repair-section {
    padding: 80px 0;
}

.why-repair-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.reasons-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.reason-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
}

.reason-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.reason-item p {
    color: #64748b;
    line-height: 1.7;
}

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

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1e293b;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1e293b;
}

.contact-details p {
    color: #64748b;
    line-height: 1.7;
}

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

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

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 4px;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 40px;
}

.map-placeholder-content {
    text-align: center;
}

.map-placeholder-content p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.map-note {
    font-size: 1.05rem;
    opacity: 0.9;
}

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

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

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

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

.faq-contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 0;
    background: #f8fafc;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.last-updated {
    color: #64748b;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1e293b;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1e293b;
}

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

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 30px;
    color: #475569;
}

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

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

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #fff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.thanks-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
}

.thanks-details {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #475569;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.steps-list-simple {
    text-align: left;
    list-style: none;
    margin-bottom: 40px;
}

.steps-list-simple li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

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

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

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

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2563eb;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

    .form-row {
        flex-direction: column;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header-centered h2,
    .section-title-centered {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

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