/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-gray);
}

.highlight {
    color: var(--primary-color);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-nav {
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border-radius: 0.375rem;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 140px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%233b82f6" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-signals {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.25rem;
}

/* ===================================
   Explainer Video Section
   =================================== */
.explainer-video {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Questionnaire Section
   =================================== */
.questionnaire {
    padding: 5rem 0;
    background: white;
}

.questionnaire-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.questionnaire-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 100px;
}

.questionnaire-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.questionnaire-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
}

.questionnaire-badge i {
    color: var(--success-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.questionnaire-badge strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.questionnaire-badge span {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.questionnaire-form-container {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.progress-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 12.5%;
}

.progress-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.questionnaire-form {
    min-height: 400px;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
}

.form-step h3 i {
    color: var(--primary-color);
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    background: white;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 140px;
}

.radio-content i {
    font-size: 2.5rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.radio-card:hover .radio-content {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.radio-card input[type="radio"]:checked + .radio-content {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    box-shadow: var(--shadow-lg);
}

.radio-card input[type="radio"]:checked + .radio-content i {
    color: var(--primary-color);
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.checkbox-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: space-between;
}

.form-navigation .btn {
    flex: 1;
    justify-content: center;
}

.questionnaire-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-color), #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 3.5rem;
    color: white;
}

.questionnaire-success h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.questionnaire-success p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.questionnaire-success ul {
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
    list-style: none;
}

.questionnaire-success ul li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    font-size: 1rem;
}

.questionnaire-success .btn {
    margin-top: 2rem;
}

/* ===================================
   Ratings Section
   =================================== */
.ratings {
    background: white;
    padding: 2rem 0;
}

.rating-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.rating-header {
    color: white;
}

.rating-score {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.rating-text {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* ===================================
   Process Section
   =================================== */
.process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: 60% center;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.about-badge i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text .lead {
    margin-bottom: 1.5rem;
}

.about-text .btn {
    margin-top: 1.5rem;
}

/* ===================================
   Value Proposition Chart Section
   =================================== */
.value-chart {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.chart-wrapper {
    max-width: 1000px;
    margin: 0 auto 2rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.chart-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

.chart-description {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 1rem;
    border: 2px solid var(--primary-color);
}

.chart-description p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.chart-description p:last-child {
    margin-bottom: 0;
}

.chart-description strong {
    color: var(--text-dark);
    font-size: 1.125rem;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===================================
   Our Services List Section
   =================================== */
.our-services-list {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.services-checklist {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

.checklist-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.check-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--success-color), #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon i {
    color: white;
    font-size: 1.25rem;
}

.check-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.check-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ===================================
   Old Comparison Section (kept for reference)
   =================================== */
.comparison {
    padding: 5rem 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    box-shadow: var(--shadow-lg);
    border-radius: 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.comparison-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.highlight-col {
    background: #eff6ff !important;
}

.table-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 0.5rem;
}

.comparison-table .fa-check-circle {
    color: var(--success-color);
    font-size: 1.5rem;
}

.comparison-table .fa-times-circle {
    color: var(--danger-color);
    font-size: 1.5rem;
}

.comparison-table .fa-minus-circle {
    color: var(--text-light);
    font-size: 1.5rem;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.125rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

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

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

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

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.office-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.office-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.office-header i {
    font-size: 2rem;
}

.office-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

.office-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.office-detail i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.office-detail strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-detail p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.office-detail a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.office-detail a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
    padding: 1rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-offices {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-office {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-office:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-office strong {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-office p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-office a {
    color: var(--primary-light);
    transition: color 0.3s ease;
}

.footer-office a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem !important;
    max-width: 800px;
    margin: 1rem auto 0;
}

/* ===================================
   Legal Pages (Impressum, Datenschutz, AGB)
   =================================== */
.legal-page {
    padding: 8rem 0 5rem;
    background: white;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.brand-notice {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    border: 2px solid var(--primary-color);
}

.brand-notice p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
}

.brand-notice strong {
    color: var(--primary-color);
}

.brand-notice-small {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

.legal-note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

.legal-intro {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.legal-intro h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-intro p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.info-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.info-table td:first-child {
    width: 200px;
    color: var(--text-dark);
}

.info-table td:last-child {
    color: var(--text-gray);
}

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

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

.data-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.data-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.data-list strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
    border: 2px solid var(--primary-color);
}

.contact-box h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-box p {
    margin: 0;
    color: var(--text-dark);
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.back-to-home {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.back-to-home .btn {
    font-size: 1.125rem;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 400px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .questionnaire-wrapper {
        grid-template-columns: 1fr;
    }

    .questionnaire-image {
        position: relative;
        top: 0;
    }

    .questionnaire-image img {
        height: 400px;
    }

    .questionnaire-form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
    }

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

    .logo img {
        height: 110px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-signals {
        flex-direction: column;
        gap: 1rem;
    }

    .process-steps,
    .services-grid,
    .offices-grid {
        grid-template-columns: 1fr;
    }

    .chart-wrapper {
        padding: 1rem;
    }

    .chart-description {
        padding: 1.5rem;
    }

    .video-wrapper {
        border-radius: 0.5rem;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }

    .form-step h3 {
        font-size: 1.25rem;
    }

    .questionnaire-form-container {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .rating-score {
        font-size: 3rem;
    }

    .step-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .office-card {
        margin: 0 -15px;
        border-radius: 0;
    }
}