/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 24px 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #3b82f6;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #2563eb;
}

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

.btn-cookie-alt:hover {
    border-color: #ffffff;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e293b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px;
    gap: 16px;
}

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

.nav-menu li a {
    display: block;
    padding: 10px 16px;
    color: #1e293b;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: #f1f5f9;
    color: #3b82f6;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-cta-large,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #3b82f6;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: #ffffff;
}

.btn-cta-large {
    background: #10b981;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
}

.btn-cta-large:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-submit {
    width: 100%;
    background: #3b82f6;
    color: #ffffff;
    border: none;
}

.btn-submit:hover {
    background: #2563eb;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 32px;
}

.hero-image {
    margin-top: 40px;
}

.hero-svg {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Section */
.trust-section {
    background: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

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

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

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

/* Problem Section */
.problem-section {
    background: #f8fafc;
    padding: 80px 0;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 700;
}

.content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.content-right {
    flex: 1;
}

.section-svg {
    width: 100%;
    max-width: 500px;
}

/* Services Preview */
.services-preview {
    background: #ffffff;
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #0f172a;
    text-align: left;
}

.section-title-center {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #0f172a;
    text-align: center;
}

.section-title-alt {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0f172a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

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

.service-price {
    font-size: 24px;
    font-weight: 800;
    color: #3b82f6;
}

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

/* Process Section */
.process-section {
    background: linear-gradient(to bottom, #eff6ff, #ffffff);
    padding: 80px 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 56px;
}

.process-step {
    background: #ffffff;
    border-left: 4px solid #3b82f6;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #3b82f6;
    background: #dbeafe;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* Testimonials Section */
.testimonials-section {
    background: #0f172a;
    color: #ffffff;
    padding: 80px 0;
}

.section-title-alt {
    color: #ffffff;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: #94a3b8;
}

/* Guarantee Section */
.guarantee-section {
    background: #dcfce7;
    padding: 70px 0;
}

.guarantee-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.guarantee-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 32px;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guarantee-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #1e293b;
}

.check-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Form Section */
.form-section {
    background: #f8fafc;
    padding: 80px 0;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
    text-align: center;
}

.form-description {
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
    text-align: center;
    margin-bottom: 40px;
}

.repair-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    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: #3b82f6;
}

.form-group textarea {
    resize: vertical;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.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: #64748b;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
}

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

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
}

.service-block {
    margin-bottom: 60px;
}

.service-block-header {
    margin-bottom: 32px;
}

.service-block-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.service-block-header p {
    font-size: 17px;
    color: #64748b;
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-row {
    background: #ffffff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-service h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.pricing-service p {
    font-size: 15px;
    color: #64748b;
}

.pricing-price {
    font-size: 26px;
    font-weight: 800;
    color: #3b82f6;
}

/* Pricing Info */
.pricing-info {
    background: #f8fafc;
    padding: 60px 0;
}

.pricing-info h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0f172a;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}

.info-card ul {
    list-style: disc;
    padding-left: 24px;
}

.info-card ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 8px;
}

/* CTA Services */
.cta-services {
    background: linear-gradient(to right, #eff6ff, #dbeafe);
    padding: 70px 0;
    text-align: center;
}

.cta-services h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}

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

/* About Intro */
.about-intro {
    padding: 60px 0;
}

.about-content-split {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0f172a;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.about-visual {
    flex: 1;
}

.about-svg {
    width: 100%;
    max-width: 500px;
}

/* Values Section */
.values-section {
    background: #f8fafc;
    padding: 70px 0;
}

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

.value-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

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

/* Team Section */
.team-section {
    padding: 70px 0;
}

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

.team-member {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.team-avatar svg {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.team-role {
    font-size: 15px;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* Certifications Section */
.certifications-section {
    background: #f8fafc;
    padding: 70px 0;
}

.certifications-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certifications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cert-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

/* Stats Section */
.stats-section {
    padding: 70px 0;
}

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

.stat-box {
    text-align: center;
    padding: 32px;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 17px;
    line-height: 1.6;
    color: #64748b;
}

/* CTA About */
.cta-about {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 70px 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-about p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

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

.contact-item a {
    color: #3b82f6;
    text-decoration: underline;
}

.contact-notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-notice p {
    font-size: 15px;
    line-height: 1.7;
    color: #78350f;
    margin: 0;
}

.contact-visual {
    flex: 1;
}

.map-placeholder {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
}

.map-svg {
    width: 100%;
    height: auto;
}

.map-note {
    text-align: center;
    font-size: 15px;
    color: #64748b;
    margin-top: 16px;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    padding: 70px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
}

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

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

/* CTA Contact */
.cta-contact {
    background: linear-gradient(to right, #dbeafe, #bfdbfe);
    padding: 70px 0;
    text-align: center;
}

.cta-contact h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}

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

/* Thanks Section */
.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
}

.success-svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
}

.thanks-info-box {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.thanks-info-box p {
    font-size: 16px;
    color: #1e293b;
}

.thanks-next-steps {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.thanks-next-steps ol {
    list-style: decimal;
    padding-left: 24px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 12px;
}

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

.thanks-contact p {
    font-size: 16px;
    color: #64748b;
}

.thanks-contact a {
    color: #3b82f6;
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
}

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

.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1e293b;
}

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

.legal-content ul {
    list-style: disc;
    padding-left: 28px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    font-size: 15px;
    color: #64748b;
    font-style: italic;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        padding: 0;
        gap: 8px;
    }

    .trust-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 12px);
    }

    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 20px);
    }

    .testimonials-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 16px);
    }

    .info-grid {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 16px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 0 calc(50% - 16px);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 0 0 calc(50% - 16px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-visual {
        flex: 1;
    }

    .pricing-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .pricing-service {
        flex: 1;
    }

    .pricing-price {
        flex-shrink: 0;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-section {
        padding: 120px 0 80px;
    }

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

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

    .service-card {
        flex: 0 0 calc(25% - 18px);
    }

    .process-step {
        flex: 0 0 calc(25% - 30px);
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 22px);
    }

    .value-card {
        flex: 0 0 calc(33.333% - 22px);
    }

    .team-member {
        flex: 0 0 calc(25% - 24px);
    }

    .stats-grid {
        flex-direction: row;
    }

    .stat-box {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 0 0 auto;
    }
}