/* Practice Page Styles */
.practice-page {
    line-height: 1.6;
    color: #333;
}

/* Practice Page Container - overrides global container on mobile */
@media (max-width: 768px) {
    .practice-page .container {
        padding: 0 15px;
    }
}

/* Hero Section */
.practice-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.practice-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.practice-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.practice-hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    font-weight: 500;
}

.practice-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.practice-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.practice-benefit-icon {
    color: #24b2a5;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.practice-benefit-item span {
    font-size: 1rem;
    color: #4a5568;
}

/* Form Container */
.practice-form-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.practice-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.practice-form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin: 0;
}

.practice-form-card {
    border-radius: 8px;
    overflow: hidden;
}

.practice-form-card iframe {
    width: 100%;
    border: none;
    min-height: 700px;
}

/* Form Footer */
.practice-form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.practice-contact-options {
    margin-bottom: 2rem;
}

.practice-contact-header {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1rem;
    text-align: center;
}

.practice-contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.practice-contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.practice-contact-method:hover {
    background: #24b2a5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 178, 165, 0.2);
}

.practice-contact-method i {
    font-size: 1.1rem;
}

.practice-large-practice-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #f39c12;
}

.practice-large-practice-note p {
    margin: 0 0 0.5rem 0;
    color: #856404;
    line-height: 1.6;
}

/* Large Praxis Section */
.practice-large-praxis-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.practice-large-praxis-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #6b7280;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
}

.practice-large-praxis-icon {
    width: 48px;
    height: 48px;
    background: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.practice-large-praxis-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.practice-large-praxis-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.practice-large-praxis-content p {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.practice-large-praxis-contacts {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.practice-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.practice-contact-btn:hover {
    background: #e5e7eb;
    color: #374151;
    border-color: #9ca3af;
}

.practice-contact-btn i {
    font-size: 1rem;
}

/* Flyer Preview Section */
.practice-flyer-preview-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.practice-flyer-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.practice-flyer-image {
    text-align: center;
}

.practice-flyer-image h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.practice-flyer-image a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.practice-flyer-image a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #24b2a5;
}

.practice-flyer-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.practice-flyer-image a:hover img {
    transform: scale(1.02);
}

.practice-flyer-disclaimer {
    text-align: center;
    margin-top: 2rem;
    color: #6b7280;
    font-style: italic;
}

/* Insurers Section */
.practice-insurers-section {
    padding: 4rem 0;
    background: #ffffff;
}

/* Section Styles */
.practice-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

.practice-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #24b2a5 0%, #48c2b7 100%);
    border-radius: 2px;
}

.practice-section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Package Section */
.practice-package-section {
    padding: 4rem 0;
    background: #ffffff;
}

.practice-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.practice-package-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.practice-package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.practice-package-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.practice-package-item p {
    color: #6b7280;
    margin: 0;
}

/* Training Section */
.practice-training-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
}

.practice-training-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.practice-training-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.practice-training-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    border-bottom: 1px solid #e5e7eb;
}

.practice-training-list li:last-child {
    border-bottom: none;
}

.practice-training-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #24b2a5;
    font-weight: bold;
}

.practice-training-cta {
    text-align: center;
}

.practice-training-options {
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.practice-training-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.practice-training-checkbox-note {
    background: #e8f5e8;
    color: #2d5a32;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #c3e6c3;
}

/* Buttons */
.practice-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.practice-btn-primary {
    background: linear-gradient(135deg, #24b2a5 0%, #48c2b7 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(36, 178, 165, 0.3);
}

.practice-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 178, 165, 0.4);
}

.practice-btn-secondary {
    background: #ffffff;
    color: #24b2a5;
    border: 2px solid #24b2a5;
}

.practice-btn-secondary:hover {
    background: #24b2a5;
    color: #ffffff;
}

.practice-btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ Section */
.practice-faq-section {
    padding: 4rem 0;
    background: #ffffff;
}

.practice-faq-list {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.practice-faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.practice-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.practice-faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.practice-faq-question:hover {
    background: #f8f9fa;
}

.practice-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #24b2a5;
    transition: transform 0.3s ease;
}

.practice-faq-item[open] .practice-faq-question::after {
    transform: rotate(45deg);
}

.practice-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.practice-faq-answer p {
    margin: 0;
}

/* Process Section */
.practice-process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    position: relative;
}

.practice-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #24b2a5 50%, transparent 100%);
}

.practice-process-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.practice-process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    position: relative;
}

.practice-process-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 4rem;
    font-weight: 500;
}

.practice-process-timeline {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin: 3rem auto;
}

.practice-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: 280px;
    justify-content: flex-start;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    width: 200px;
    flex-shrink: 0;
}

.practice-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(36, 178, 165, 0.15);
    border-color: #24b2a5;
}

.practice-process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #24b2a5 0%, #48c2b7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(36, 178, 165, 0.3);
    position: relative;
}

.practice-process-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #24b2a5, #48c2b7);
    z-index: -1;
    opacity: 0.2;
}

.practice-process-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.practice-process-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.practice-process-content p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.practice-process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 0 0.75rem;
    flex-shrink: 0;
}

.practice-process-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #24b2a5 0%, #48c2b7 100%);
    position: relative;
}

.practice-process-line::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #24b2a5;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.practice-process-dot {
    display: none;
}

.practice-process-cta {
    margin-top: 4rem;
}

/* Trust Section */
.practice-trust-section {
    padding: 4rem 0;
    background: #ffffff;
}

.practice-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.practice-trust-item {
    text-align: center;
    padding: 2rem 1rem;
}

.practice-trust-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #24b2a5;
    margin-bottom: 0.5rem;
}

.practice-trust-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.practice-trust-item p {
    color: #4a5568;
    margin: 0;
    font-weight: 500;
}

.practice-trust-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Footer Contact */
.practice-footer-contact {
    padding: 2rem 0;
    background: #1a365d;
    color: #ffffff;
    text-align: center;
}

.practice-footer-contact a {
    color: #24b2a5;
    text-decoration: none;
}

.practice-footer-contact a:hover {
    text-decoration: underline;
}

/* ==========================================
   NEW HERO SECTION - Privatpatienten-Turbo
   ========================================== */
.practice-new-hero {
    background: linear-gradient(180deg, #f8fafa 0%, #e8f4f3 100%);
    padding: 70px 0 4rem;
    text-align: center;
}

.practice-new-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.practice-new-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #24b2a5;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.practice-new-hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #24b2a5;
    border-radius: 50%;
}

.practice-new-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.practice-new-hero-title-accent {
    color: #24b2a5;
    font-style: italic;
}

.practice-new-hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
    line-height: 1.6;
    text-align: center;
}

.practice-new-hero-cta {
    margin-bottom: 3rem;
}

.practice-new-hero-cta .practice-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.practice-new-hero-cta .practice-btn i {
    font-size: 1.2rem;
}

/* Hero Stat Cards */
.practice-hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.practice-hero-stat-card {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.practice-hero-stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #24b2a5;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.practice-hero-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.practice-hero-stat-note {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* ==========================================
   SOLUTION SECTION - Die privYou 1-Klick-Solution
   ========================================== */
.practice-solution-section {
    padding: 5rem 0;
    background: #f8fafa;
}

.practice-solution-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 2.5rem;
    position: relative;
}

/* Verbindungslinie zwischen den Nummern */
.practice-solution-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(180deg, #d4e5e3 0%, #24b2a5 50%, #d4e5e3 100%);
}

.practice-solution-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.practice-solution-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f0f7f6 0%, #e0efed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 2px solid #d4e5e3;
}

.practice-solution-number span {
    font-weight: 700;
    font-size: 1.25rem;
    color: #24b2a5;
}

.practice-solution-card {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.practice-solution-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #24b2a5;
    transform: translateX(4px);
}

.practice-solution-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f0f7f6 0%, #e0efed 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.practice-solution-icon i {
    font-size: 1.5rem;
    color: #24b2a5;
}

.practice-solution-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.practice-solution-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Trust Badges */
.practice-solution-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.practice-solution-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.practice-solution-badge i {
    color: #24b2a5;
    font-size: 1.25rem;
}

/* ==========================================
   SOLUTION SECTION V3B - 2-Spalten Layout
   ========================================== */
.practice-solution-v3b {
    padding: 5rem 0;
    background: #f8fafa;
}

.practice-v3b-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0 2.5rem;
    align-items: stretch;
}

/* Linke Spalte: Große Card */
.practice-v3b-main-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.practice-v3b-main-header {
    background: linear-gradient(135deg, #24b2a5 0%, #1d9e93 100%);
    padding: 2rem;
    color: #ffffff;
}

.practice-v3b-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.practice-v3b-badge i {
    font-size: 1rem;
}

.practice-v3b-main-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.practice-v3b-main-intro {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.practice-v3b-main-body {
    padding: 2rem;
    flex: 1;
}

.practice-v3b-main-body p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.practice-v3b-main-body p:last-child {
    margin-bottom: 0;
}

.practice-v3b-main-body strong {
    color: #1a365d;
}

/* Rechte Spalte: 4 Feature-Cards */
.practice-v3b-features {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
    height: 100%;
    align-items: stretch;
}

.practice-v3b-feature {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.practice-v3b-feature:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #24b2a5;
    transform: translateX(4px);
}

.practice-v3b-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f0f7f6 0%, #e0efed 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.practice-v3b-feature-icon i {
    font-size: 1.35rem;
    color: #24b2a5;
}

.practice-v3b-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.practice-v3b-feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin: 0 0 0.25rem 0;
}

.practice-v3b-feature-content p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.875rem;
    margin: 0;
}

/* DAS ERGEBNIS Section */
.practice-v3b-results {
    margin-top: 2.5rem;
}

.practice-v3b-results-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #24b2a5;
    margin-bottom: 1.5rem;
}

.practice-v3b-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.practice-v3b-stat {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.practice-v3b-stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f0f7f6 0%, #e0efed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.practice-v3b-stat-icon i {
    font-size: 1.5rem;
    color: #24b2a5;
}

.practice-v3b-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #24b2a5;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.practice-v3b-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.practice-v3b-stat-text {
    font-size: 1.32rem;
    font-weight: 600;
    color: #1a365d;
    line-height: 1.3;
}

/* Legacy: Keep old classes for backwards compatibility */
.practice-two-ways-section {
    padding: 5rem 0;
    background: #ffffff;
}

.practice-two-ways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.practice-way-card {
    background: #f8fafa;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.practice-way-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #24b2a5;
}

.practice-way-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.practice-way-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #24b2a5 0%, #48c2b7 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
}

.practice-way-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.practice-way-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.practice-way-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Variante B: Kreis mit Nummer */
.practice-way-card-alt .practice-way-number {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

/* Trust Bar - Full-Width Gradient Stripe */
.practice-trust-bar-wrapper {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    background: linear-gradient(180deg, #f8fafa 0%, #e8f4f3 100%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.practice-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.practice-trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
}

.practice-trust-bar-item i {
    color: #24b2a5;
    font-size: 1.25rem;
}

.practice-trust-bar-divider {
    width: 1px;
    height: 24px;
    background: #d1d5db;
}

/* Option B: Transparent Trust Bar (no background/borders) */
.practice-trust-bar-transparent {
    background: transparent;
    border-top: none;
    border-bottom: none;
    margin-top: 0;
    margin-bottom: 0;
}

.practice-trust-bar-transparent .practice-trust-bar {
    padding: 1rem 2rem;
}

.practice-trust-bar-transparent .practice-trust-bar-divider {
    background: #c5d1cf;
}

/* Option A: Inline Trust Text in Hero */
.practice-hero-trust-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.practice-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
}

.practice-hero-trust-item i {
    color: #24b2a5;
    font-size: 1.1rem;
}

.practice-hero-trust-separator {
    color: #9ca3af;
    font-size: 1rem;
}

/* Trust Item Tooltips */
.practice-hero-trust-item {
    position: relative;
    cursor: pointer;
}

.practice-trust-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    padding: 1rem;
    background: #1a365d;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    pointer-events: none;
}

.practice-trust-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #1a365d;
}

.practice-hero-trust-item:hover .practice-trust-tooltip,
.practice-hero-trust-item:focus .practice-trust-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   TESTIMONIALS SECTION - Kundenzitate
   ========================================== */
.practice-testimonials-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.practice-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.practice-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.practice-testimonial-badge {
    display: inline-block;
    background: #e6fffa;
    color: #0d9488;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.practice-testimonial-quote-icon {
    font-size: 2.5rem;
    color: #24b2a5;
    opacity: 0.3;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.practice-testimonial-text {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.practice-testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.practice-testimonial-name {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.practice-testimonial-role {
    font-size: 0.9rem;
    color: #6b7280;
}

/* ==========================================
   CONTACT SECTION (ehemaliger Hero)
   ========================================== */
.practice-contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    border-top: 1px solid #e5e7eb;
}

.practice-contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.practice-contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.practice-contact-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Benefits - Abstand -20%, Größe -25% von original 50% increase */
.practice-contact-section .practice-benefits-list {
    gap: 0.8rem;
}

.practice-contact-section .practice-benefit-item {
    padding: 0.6rem 0;
}

.practice-contact-section .practice-benefit-icon {
    font-size: 1.4rem;
}

.practice-contact-section .practice-benefit-item span {
    font-size: 1.125rem;
}

.practice-contact-section .practice-benefit-item strong {
    font-size: 1.125rem;
}

/* privYou Contact Form Styles */
.privyou-form-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.privyou-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.privyou-form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin: 0;
}

.privyou-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.privyou-input-field {
    position: relative;
}

.privyou-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.privyou-input:focus {
    outline: none;
    border-color: #24b2a5;
    box-shadow: 0 0 0 3px rgba(36, 178, 165, 0.15);
}

.privyou-input::placeholder {
    color: #9ca3af;
}

.privyou-input-error {
    border-color: #ef4444;
}

/* Textarea styling */
.privyou-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.privyou-error-message {
    display: none;
    font-size: 0.85rem;
    color: #ef4444;
    margin-top: 0.5rem;
}

.privyou-input-field.has-error .privyou-error-message {
    display: block;
}

.privyou-submit-btn {
    background: linear-gradient(135deg, #24b2a5 0%, #48c2b7 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.privyou-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 178, 165, 0.4);
}

.privyou-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.privyou-loading-spinner {
    display: none;
    justify-content: center;
    padding: 1rem;
}

.privyou-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top-color: #24b2a5;
    border-radius: 50%;
    animation: privyou-spin 0.8s linear infinite;
}

@keyframes privyou-spin {
    to { transform: rotate(360deg); }
}

.privyou-success-message,
.privyou-error-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.privyou-message-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.privyou-success-message .privyou-message-icon {
    color: #22c55e;
}

.privyou-error-state .privyou-message-icon {
    color: #ef4444;
}

.privyou-message-text {
    color: #4a5568;
    line-height: 1.6;
}

/* Footer contact info under form */
.privyou-form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Hero CTA: Hide arrow on mobile to prevent two-line button */
    .practice-new-hero-cta .practice-btn i {
        display: none;
    }

    /* Solution Section responsive */
    .practice-solution-section {
        padding: 3rem 0;
    }

    .practice-solution-timeline {
        margin: 2rem auto;
    }

    .practice-solution-timeline::before {
        left: 24px;
        top: 40px;
        bottom: 40px;
    }

    .practice-solution-step {
        gap: 1rem;
    }

    .practice-solution-number {
        width: 48px;
        height: 48px;
    }

    .practice-solution-number span {
        font-size: 1rem;
    }

    .practice-solution-card {
        padding: 1.25rem;
        flex-direction: column;
        gap: 1rem;
    }

    .practice-solution-icon {
        width: 40px;
        height: 40px;
    }

    .practice-solution-icon i {
        font-size: 1.25rem;
    }

    .practice-solution-content h3 {
        font-size: 1.1rem;
    }

    .practice-solution-badges {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
        align-items: flex-start;
    }

    /* V3B responsive */
    .practice-solution-v3b {
        padding: 3rem 0;
    }

    .practice-v3b-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .practice-v3b-main-header {
        padding: 1.5rem;
    }

    .practice-v3b-main-title {
        font-size: 1.5rem;
    }

    .practice-v3b-main-body {
        padding: 1.5rem;
    }

    .practice-v3b-feature {
        padding: 1rem 1.25rem;
    }

    .practice-v3b-feature-icon {
        width: 40px;
        height: 40px;
    }

    .practice-v3b-feature-icon i {
        font-size: 1.2rem;
    }

    .practice-v3b-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .practice-v3b-stat {
        padding: 1.5rem;
    }

    .practice-v3b-stat-value {
        font-size: 2rem;
    }

    /* Reduce section padding on mobile (90px → 50px) */
    .practice-two-ways-section,
    .practice-testimonials-section,
    .practice-contact-section,
    .practice-faq-section,
    .practice-process-section,
    .practice-insurers-section,
    .practice-training-section,
    .practice-trust-section {
        padding: 3rem 0;
    }

    .practice-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .practice-hero-title {
        font-size: 2rem;
    }

    .practice-form-container {
        padding: 1.5rem;
    }

    .practice-training-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .practice-process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .practice-process-connector {
        display: none;
    }

    .practice-process-step {
        padding: 1.25rem 1rem;
        width: calc(100% - 40px);
        max-width: 100%;
        min-height: auto;
        box-sizing: border-box;
    }

    .practice-process-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }

    .practice-process-icon i {
        font-size: 1.5rem;
    }

    .practice-process-content h4 {
        margin-bottom: 0.25rem;
    }

    .practice-process-title,
    .practice-process-subtitle {
        text-align: center;
    }

    .practice-process-cta {
        text-align: center;
    }

    .practice-section-title {
        font-size: 1.75rem;
    }

    /* Contact Section - center text on mobile */
    .practice-contact-title,
    .practice-contact-subtitle {
        text-align: center;
    }

    /* New Hero responsive */
    .practice-new-hero {
        padding: 3rem 0;
    }

    .practice-new-hero-title {
        font-size: 2rem;
    }

    .practice-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .practice-hero-stat-card {
        min-width: auto;
        padding: 1.5rem;
    }

    .practice-hero-stat-value {
        font-size: 2.5rem;
    }

    /* Two Ways responsive */
    .practice-two-ways-grid {
        grid-template-columns: 1fr;
    }

    .practice-compliance-badges {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    /* Testimonials responsive */
    .practice-testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Option A: Trust Text responsive */
    .practice-hero-trust-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .practice-hero-trust-separator {
        display: none;
    }

    /* Tooltip responsive - position below on mobile */
    .practice-trust-tooltip {
        bottom: auto;
        top: calc(100% + 12px);
        width: 260px;
    }

    .practice-trust-tooltip::after {
        top: auto;
        bottom: 100%;
        border-top-color: transparent;
        border-bottom-color: #1a365d;
    }

    /* Option B: Trust Bar responsive */
    .practice-trust-bar {
        flex-direction: column;
        gap: 0.75rem;
    }

    .practice-trust-bar-divider {
        width: 60px;
        height: 1px;
    }

    /* Contact Section responsive */
    .practice-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .practice-contact-text {
        text-align: center;
        padding: 0 10px;
    }

    .practice-contact-section .practice-benefits-list {
        align-items: center;
    }

    .practice-contact-section .practice-benefit-item {
        justify-content: center;
        text-align: left;
    }

    .practice-contact-section .practice-benefit-item span,
    .practice-contact-section .practice-benefit-item strong {
        font-size: 1rem;
    }

    .practice-contact-section .practice-benefit-icon {
        font-size: 1.25rem;
    }

    .privyou-form-container {
        margin: 0;
        padding: 20px;
    }

    /* Fix input fields to respect container padding */
    .privyou-input {
        width: 100%;
        box-sizing: border-box;
    }

    /* CTA button single line on mobile */
    .privyou-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .practice-hero-section {
        padding: 2rem 0;
    }
    
    .practice-hero-title {
        font-size: 1.75rem;
    }
    
    .practice-package-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-faq-question {
        padding: 1rem;
    }
    
    .practice-faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .practice-trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .practice-large-praxis-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .practice-large-praxis-contacts {
        justify-content: center;
    }
    
    .practice-flyer-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .practice-contact-btn {
        flex: 1;
        justify-content: center;
    }
}
