/* ================================================
   UNIFIED PAGE DESIGN - Based on Karriere Page
   Consistent hero sections, headings, and cards
   Used on all pages except index.html
   ================================================ */

/* White Background for all pages */
body.unified-page {
    background: #ffffff;
}

/* Sections haben standardmäßig transparenten Hintergrund */
body.unified-page section {
    background: transparent;
}

/* ==========================================
   HERO SECTION - Consistent across all pages
   ========================================== */
.unified-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem 5rem 2rem;
    margin-top: 50px;
    z-index: 2;
}

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

.unified-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1a365d;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.unified-hero-accent {
    display: block;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 50%, #fb923c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    font-size: 1.15em;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.unified-hero p {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: #4a5568;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.85;
}

/* ==========================================
   SECTION STYLING
   ========================================== */
.unified-section {
    padding: 4rem 2rem 6rem;
    position: relative;
    z-index: 2;
}

.unified-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .unified-container {
        padding: 0 1rem;
    }
}

/* ==========================================
   HEADINGS - Consistent across all pages
   ========================================== */
body.unified-page .section-title,
body.unified-page h2.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a365d;
    letter-spacing: -0.02em;
}

body.unified-page .section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    opacity: 0.85;
}

body.unified-page h2,
body.unified-page h3,
body.unified-page h4 {
    color: #1a365d;
}

/* ==========================================
   CARDS - Service/Benefit/Feature Cards
   ========================================== */
.unified-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .unified-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .unified-card-grid {
        grid-template-columns: 1fr;
    }
}

.unified-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
}

.unified-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.unified-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.18));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(249, 115, 22, 0.35);
    color: #f97316;
    transition: all 0.4s;
}

.unified-card:hover .unified-card-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.unified-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: #1a365d;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.unified-card p {
    font-size: var(--font-size-sm);
    color: #4a5568;
    line-height: 1.7;
    opacity: 0.9;
}

/* ==========================================
   ALTERNATIVE CARD STYLES
   ========================================== */

/* Service Cards (smaller grid, different style) */
.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .service-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-card-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.18));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(249, 115, 22, 0.35);
    color: #f97316;
    transition: all 0.4s;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.service-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: #1a365d;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-card p {
    font-size: var(--font-size-sm);
    color: #4a5568;
    line-height: 1.7;
    opacity: 0.9;
}

/* ==========================================
   LISTS
   ========================================== */
.unified-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.unified-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.unified-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.125rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 50%;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .unified-hero {
        min-height: 40vh;
        padding: 3rem 1.5rem 4rem;
        margin-top: 40px;
    }

    .unified-hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .unified-section {
        padding: 3rem 1.5rem 4rem;
    }

    .unified-card-grid,
    .service-card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .unified-card,
    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .unified-hero {
        padding: 2.5rem 1rem 3rem;
    }

    .unified-section {
        padding: 2.5rem 1rem 3rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2rem);
    }
}

/* ========================================
   ADDITIONAL CARD COMPONENTS
   ======================================== */

/* System Cards - Large Feature Cards with Icon + Content Layout */
.system-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
}

.system-card.reverse {
    grid-template-columns: 2fr 1fr;
}

.system-card.reverse .system-content {
    order: 1;
}

.system-card.reverse .system-visual {
    order: 2;
}

.system-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-icon-large {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.18));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(249, 115, 22, 0.35);
    color: #f97316;
}

.system-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #1a365d;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.system-content p {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: #4a5568;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

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

.system-features li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
    font-size: var(--font-size-sm);
}

.system-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 50%;
}

.system-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.system-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* Badge */
.badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge-notdienst {
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.3);
}

/* Notdienst Box */
.notdienst-box {
    background: rgba(220, 38, 38, 0.08);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.notdienst-box h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.notdienst-box p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.phone-large {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #dc2626;
    text-decoration: none;
    margin: 1rem 0;
}

.phone-large:hover {
    color: #991b1b;
}

.notdienst-btn {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.notdienst-btn:hover {
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

/* Prozess Grid - Step Cards */
.prozess-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .prozess-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .prozess-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.prozess-step {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    text-align: center;
    position: relative;
}

.prozess-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.prozess-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
    transition: all 0.4s;
}

.prozess-step:hover .prozess-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.prozess-step h4 {
    font-size: var(--font-size-md);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a365d;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.prozess-step p {
    font-size: var(--font-size-sm);
    color: #4a5568;
    line-height: 1.6;
    opacity: 0.9;
}

/* Vorteil Cards - Small Feature Cards */
.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
}

.vorteil-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    text-align: center;
}

.vorteil-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.vorteil-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.18));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(249, 115, 22, 0.35);
    color: #f97316;
    transition: all 0.4s;
}

.vorteil-card:hover .vorteil-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.vorteil-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a365d;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.vorteil-card p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.6;
    opacity: 0.9;
}

/* Erwarten Section (leistungen.html) */
.erwarten-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1a365d;
    text-align: center;
    margin-bottom: 1rem;
}

.erwarten-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.85;
}

.erwarten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .erwarten-grid {
        grid-template-columns: 1fr;
    }
}

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

.erwarten-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(245, 158, 11, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(249, 115, 22, 0.25);
    color: #f97316;
}

.erwarten-item h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a365d;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.erwarten-item p {
    font-size: var(--font-size-sm);
    color: #4a5568;
    line-height: 1.6;
    opacity: 0.9;
}

/* Leistungen Grid (leistungen.html) */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 1200px) {
    .leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .leistungen-grid {
        grid-template-columns: 1fr;
    }
}

.leistung-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    text-decoration: none;
    display: block;
}

.leistung-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.leistung-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.18));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 2px solid rgba(249, 115, 22, 0.35);
    color: #f97316;
    transition: all 0.4s;
}

.leistung-card:hover .leistung-card-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.leistung-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a365d;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.leistung-card p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.leistung-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f97316;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Kontakt CTA Section */
.kontakt-cta {
    background: transparent;
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.kontakt-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #1a365d;
    margin-bottom: 1rem;
}

.kontakt-cta p {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: #4a5568;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.kontakt-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.kontakt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.kontakt-btn-primary {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: white;
}

.kontakt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.kontakt-btn-secondary {
    background: white;
    color: #1a365d;
    border-color: rgba(249, 115, 22, 0.3);
}

.kontakt-btn-secondary:hover {
    border-color: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
}

/* Kontakt Page Specific */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.kontakt-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kontakt-info-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
}

.kontakt-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.kontakt-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.18));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
}

.kontakt-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

.kontakt-info-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.kontakt-info-content a {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

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

.oeffnungszeiten-list {
    list-style: none;
    padding: 0;
}

.oeffnungszeiten-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.oeffnungszeiten-list li:last-child {
    border-bottom: none;
}

.oeffnungszeiten-day {
    font-weight: 600;
    color: #1a365d;
}

.oeffnungszeiten-time {
    color: #4a5568;
}

.kontakt-form-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
}

.kontakt-form-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.kontakt-map {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
}

.kontakt-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Mobile Responsive for Additional Components */
@media (max-width: 768px) {
    .system-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .system-card.reverse {
        grid-template-columns: 1fr;
    }

    .system-card.reverse .system-content {
        order: 2;
    }

    .system-card.reverse .system-visual {
        order: 1;
    }

    .system-icon-large {
        width: 100px;
        height: 100px;
    }

    .prozess-grid,
    .vorteile-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .kontakt-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .kontakt-cta {
        padding: 3rem 1.5rem;
    }
}

/* ========================================
   KARRIERE PAGE CARD COMPONENTS
   ======================================== */

/* Benefits Grid (karriere.html) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.18));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(249, 115, 22, 0.35);
    color: #f97316;
    transition: all 0.4s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.benefit-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: #1a365d;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.7;
    opacity: 0.9;
}

/* Ausbildung Cards */
.ausbildung-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    margin-bottom: 2rem;
}

.ausbildung-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a365d;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ausbildung-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.18));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
}

.ausbildung-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ausbildung-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.ausbildung-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.125rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 50%;
}

/* Stelle Cards */
.stellen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.stelle-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
    transition: all 0.4s;
}

.stelle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.3);
}

.stelle-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stelle-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a365d;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.stelle-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #1a365d;
}

.stelle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.stelle-features li {
    padding: 0.625rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
    font-size: 0.9375rem;
}

.stelle-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: 700;
    font-size: 1.125rem;
}

.bewerbung-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
}

.bewerbung-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* ========================================
   ADDITIONAL GENERIC CARD TYPES
   ======================================== */

/* Generic Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

/* Why Cards */
.why-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 146, 60, 0.15));
    border: 3px solid rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
    border-color: rgba(249, 115, 22, 0.5);
}

.team-info {
    width: 100%;
}

.team-info h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-info p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Value Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 146, 60, 0.15));
    border: 1px solid rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 146, 60, 0.25));
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Timeline Cards */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
}

.timeline-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

.timeline-year {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.timeline-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.timeline-card p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Ratgeber Cards */
.ratgeber-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    text-decoration: none;
    display: block;
}

.ratgeber-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
}

/* Calculator/Option Cards */
.calc-card,
.option-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
    transition: all 0.3s;
}

.calc-card:hover,
.option-card:hover {
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

.option-cards,
.help-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .option-cards,
    .help-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .option-cards,
    .help-cards {
        grid-template-columns: 1fr;
    }
}

/* Help Cards */
.help-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

/* Symptom Cards */
.symptom-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
    cursor: pointer;
}

.symptom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

.symptom-card.selected {
    border-color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Comparison Cards */
.comparison-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.12);
}

.comparison-card.highlight {
    border: 2px solid #f97316;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.25);
}

/* Result Detail Cards */
.result-detail-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
    margin-bottom: 1.5rem;
}

/* Mobile Responsive for Additional Cards */
@media (max-width: 768px) {
    .stellen-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stelle-card {
        padding: 2rem 1.5rem;
    }

    .stelle-card h3 {
        font-size: 1.5rem;
    }

    .ausbildung-card {
        padding: 2rem 1.5rem;
    }

    .ausbildung-card h3 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .option-cards,
    .help-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   RATGEBER PAGE STYLES
   ======================================== */

.ratgeber-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .ratgeber-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ratgeber-grid {
        grid-template-columns: 1fr;
    }
}

.ratgeber-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 146, 60, 0.15));
    border: 1px solid rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.ratgeber-card:hover .ratgeber-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 146, 60, 0.25));
    transform: scale(1.1);
}

.ratgeber-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.ratgeber-card p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ratgeber-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ratgeber-list li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: #2d3748;
    line-height: 1.6;
}

.ratgeber-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: 700;
    font-size: 1.125rem;
}

.tipp-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(251, 146, 60, 0.08));
    border: 2px solid rgba(249, 115, 22, 0.35);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}

.tipp-box h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.tipp-box h4 i {
    color: #f97316;
}

.tipp-box p {
    color: #2d3748;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Styles */
.faq-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.12);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(249, 115, 22, 0.05);
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
    flex: 1;
}

.faq-icon {
    color: #f97316;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   CALCULATOR PAGE STYLES
   ======================================== */

.calculator-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid rgba(26, 54, 93, 0.1);
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button:hover {
    color: #f97316;
    background: rgba(249, 115, 22, 0.05);
}

.tab-button.active {
    color: #f97316;
    border-bottom-color: #f97316;
}

.tab-button i {
    width: 20px;
    height: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.calc-card {
    padding: 3rem;
}

.calc-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.calc-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.calc-intro p {
    font-size: 1.0625rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .option-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .option-cards {
        grid-template-columns: 1fr;
    }
}

.option-card {
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(249, 115, 22, 0.25);
}

.option-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.5);
}

.option-card.selected {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 146, 60, 0.1));
    border-color: #f97316;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.option-card i {
    color: #f97316;
    margin-bottom: 1rem;
}

.option-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.option-card p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    font-weight: 600;
    color: #1a365d;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(26, 54, 93, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    color: #2d3748;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group small {
    color: #64748b;
    font-size: 0.8125rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #2d3748;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #f97316;
}

.calc-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 3rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.calc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.calc-button i {
    width: 20px;
    height: 20px;
}

.result-box {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(251, 146, 60, 0.05));
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    display: none;
}

.result-box.visible {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 2rem;
}

.result-highlight {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.result-highlight .amount {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-highlight .label {
    display: block;
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .result-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .result-grid {
        grid-template-columns: 1fr;
    }
}

.result-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.result-item .label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result-item .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a365d;
}

.disclaimer {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-left: 4px solid #f97316;
}

.disclaimer i {
    color: #f97316;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer p {
    margin: 0;
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive adjustments for calculator */
@media (max-width: 1024px) {
    .calculator-tabs {
        gap: 0.75rem;
    }

    .tab-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .calc-card {
        padding: 2.5rem 2rem;
    }

    .result-box {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .calculator-tabs {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
        margin-bottom: 2rem;
    }

    .tab-button {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(26, 54, 93, 0.1);
        border-left: 3px solid transparent;
        justify-content: flex-start;
    }

    .tab-button.active {
        border-bottom-color: rgba(26, 54, 93, 0.1);
        border-left-color: #f97316;
        background: rgba(249, 115, 22, 0.05);
    }

    .calc-card {
        padding: 2rem 1.5rem;
    }

    .calc-card .unified-section {
        padding: 2.5rem 0;
    }

    .calc-card .unified-section h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .calc-intro {
        margin-bottom: 2rem;
    }

    .calc-intro h2 {
        font-size: 1.75rem;
    }

    .calc-intro p {
        font-size: 1rem;
    }

    .result-box {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .result-highlight {
        padding: 2rem 1.5rem;
    }

    .result-highlight .amount {
        font-size: 2.25rem;
    }

    .result-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .option-card {
        padding: 1.75rem 1.25rem;
    }

    .checkbox-group {
        gap: 0.875rem;
    }

    .checkbox-group label {
        font-size: 0.875rem;
        gap: 0.625rem;
    }

    .checkbox-group label small {
        margin-left: 1.75rem;
        font-size: 0.8125rem;
    }

    .calc-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calculator-tabs {
        margin-bottom: 1.5rem;
    }

    .tab-button {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    .calc-card {
        padding: 1.5rem 1rem;
    }

    .calc-card .unified-section {
        padding: 2rem 0;
    }

    .calc-card .unified-section h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .calc-card .unified-section h3 i {
        width: 18px;
        height: 18px;
    }

    .calc-intro {
        margin-bottom: 1.5rem;
    }

    .calc-intro h2 {
        font-size: 1.5rem;
    }

    .calc-intro p {
        font-size: 0.9375rem;
    }

    .option-card {
        padding: 1.5rem 1rem;
    }

    .option-card i {
        width: 36px;
        height: 36px;
    }

    .option-card h4 {
        font-size: 1rem;
    }

    .option-card p {
        font-size: 0.8125rem;
    }

    .form-group label {
        font-size: 0.875rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }

    .form-group small {
        font-size: 0.75rem;
    }

    .checkbox-group {
        gap: 0.75rem;
    }

    .checkbox-group label {
        font-size: 0.8125rem;
    }

    .checkbox-group label small {
        margin-left: 1.5rem;
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .checkbox-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .result-box {
        padding: 1.5rem 1rem;
    }

    .result-box h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .result-box h4 {
        font-size: 1.125rem;
    }

    .result-box ul {
        font-size: 0.875rem;
        padding-left: 1.25rem;
    }

    .result-box ul li {
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

    .result-highlight {
        padding: 1.75rem 1.25rem;
    }

    .result-highlight .amount {
        font-size: 2rem;
    }

    .result-item {
        padding: 1.25rem 1rem;
    }

    .result-item .label {
        font-size: 0.8125rem;
    }

    .result-item .value {
        font-size: 1.375rem;
    }

    .calc-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .disclaimer {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .disclaimer i {
        width: 18px;
        height: 18px;
    }

    .disclaimer p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
}
