/* Depot Eröffnen - Specific Styles */

/* Depot Explanation */
.depot-explanation {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.depot-basics {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.depot-basics h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.depot-basics p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Analogy Comparison */
.depot-analogy {
    margin-top: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
}

.analogy-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.analogy-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.analogy-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.analogy-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.analogy-item p {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.analogy-arrow {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: bold;
}

/* Depot Types */
.depot-types {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.depot-types h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.depot-options {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    width: fit-content;
    margin: auto;
    gap: 1.5rem;
}

.depot-option {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.depot-option:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

.depot-option.recommended {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.option-badge {
    position: absolute;
    top: -15px;
    left: 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.depot-option h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.option-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.option-features span {
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

.option-features span:contains("✅") {
    background: #dcfce7;
    color: #166534;
}

.option-features span:contains("❌") {
    background: #fee2e2;
    color: #dc2626;
}

.depot-option p {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* Benefits Grid */
.depot-benefits {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.depot-benefits h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 280px);
    width: fit-content;
    margin: auto;
    gap: 1.5rem;
}

.benefit-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.benefit-card p {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* Requirements Overview */
.requirements-overview {
    margin-top: 2rem;
}

.requirements-overview h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.requirements-overview p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.requirements-checklist {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.requirement-category {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.requirement-category h4 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.requirement-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: #f0f9ff;
    transform: translateX(4px);
}

.req-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.req-content strong {
    color: #1f2937;
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.req-content p {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* Special Cases */
.special-cases {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.special-cases h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.special-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.special-case {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.special-case:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.special-case h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.special-case p {
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* Broker Comparison Depot */
.broker-comparison-depot {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.broker-depot-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.broker-depot-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.broker-depot-card.featured {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.depot-badge {
    position: absolute;
    top: -20px;
    left: 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.broker-header img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.broker-info h3 {
    margin: 0 0 0.25rem 0;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
}

.broker-rating {
    color: #f59e0b;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Depot Process */
.depot-process {
    margin-bottom: 1.5rem;
}

.depot-process h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    position: relative;
    z-index: 2;
    min-width: 80px;
}

.step-time {
    color: #3b82f6;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-desc {
    color: #4b5563;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Depot Features */
.depot-features {
    margin-bottom: 1.5rem;
}

.depot-features h4 {
    color: #10b981;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.depot-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.depot-features li {
    color: #374151;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.depot-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Depot Costs */
.depot-costs {
    margin-bottom: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
}

.cost-overview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cost-item span {
    color: #4b5563;
    font-size: 0.875rem;
}

.cost-item strong {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
}

.depot-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.depot-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    color: white;
}

/* Broker Selection Tips */
.broker-selection-tips {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.broker-selection-tips h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.selection-criteria {
    display: grid;
    grid-template-columns: repeat(2, 280px);
    width: fit-content;
    margin: auto;
    gap: 1.5rem;
}

.criteria-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.criteria-item h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.criteria-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-item li {
    color: #4b5563;
    padding: 0.375rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.criteria-item li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #3b82f6;
    font-weight: bold;
}

/* Step by Step Guide */
.step-by-step-guide {
    margin-top: 2rem;
}

.guide-intro p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.step-phases {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.phase-section h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.detailed-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-detailed {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-detailed:hover {
    background: #f0f9ff;
    transform: translateX(4px);
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.step-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-tip {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1rem;
}

.step-tip strong {
    color: #92400e;
    font-weight: 600;
}

/* Depot Types Mini */
.depot-types-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.depot-type {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Data Categories */
.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.data-category {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
}

.data-category h5 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.data-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.data-category li {
    color: #4b5563;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
    line-height: 1.5;
}

.data-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Experience Guide */
.experience-guide {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
}

.experience-level {
    color: #4b5563;
    line-height: 1.5;
}

.experience-level strong {
    color: #1f2937;
    font-weight: 600;
}

/* Tax Info */
.tax-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tax-allowance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.tax-allowance span {
    color: #166534;
}

.tax-allowance strong {
    color: #166534;
    font-weight: 700;
}

/* Documents List */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 6px;
}

.doc-icon {
    font-size: 1.125rem;
}

/* Video Ident Preview */
.video-ident-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.video-ident-preview span {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Confirmation Timeline */
.confirmation-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.conf-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.conf-step:last-child {
    border-bottom: none;
}

.conf-step span:first-child {
    color: #3b82f6;
    font-weight: 600;
}

.conf-step span:last-child {
    color: #4b5563;
}

/* Video Ident Guide */
.video-ident-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.ident-intro {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.ident-intro h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.ident-intro p {
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* Ident Requirements */
.ident-requirements {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.ident-requirements h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.ident-checklist {
    display: grid;
    grid-template-columns: repeat(2, 280px);
    width: fit-content;
    margin: auto;
    gap: 1.5rem;
}

.ident-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.ident-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.ident-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.ident-content strong {
    color: #1f2937;
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.ident-content p {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* Ident Process */
.ident-process {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.ident-process h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.ident-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.ident-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: #e5e7eb;
}

.ident-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.ident-step-number {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.ident-step-content {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    flex: 1;
}

.ident-step-content h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.ident-step-content p {
    color: #4b5563;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.ident-note {
    background: #fef3c7;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.ident-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ident-tips span {
    background: #dcfce7;
    color: #166534;
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

.ident-success {
    background: #dcfce7;
    color: #166534;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

/* Ident Troubleshooting */
.ident-troubleshooting {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 2rem;
}

.ident-troubleshooting h3 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.troubleshooting-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trouble-item {
    background: white;
    border: 2px solid #fecaca;
    border-radius: 8px;
    padding: 1.5rem;
}

.trouble-item h4 {
    color: #dc2626;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.trouble-item p {
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.trouble-item strong {
    color: #dc2626;
    font-weight: 600;
}

/* First Deposit Guide */
.first-deposit-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.deposit-methods {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.deposit-methods h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.deposit-methods p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.payment-method {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.payment-method.recommended {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.method-badge {
    position: absolute;
    top: -15px;
    left: 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.payment-method h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.method-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.method-details span {
    background: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

.payment-method p {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* First Steps */
.first-steps {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.first-steps h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.getting-started {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    width: fit-content;
    margin: auto;
    gap: 1.5rem;
}

.first-step-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.first-step-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.first-step-card h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.first-step-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.explore-features, .sparplan-benefits, .trading-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.explore-features span, .sparplan-benefits span, .trading-tips span {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Investment Recommendations */
.investment-recommendations {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.investment-recommendations h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.beginner-strategy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.strategy-pillar {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.strategy-pillar:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.strategy-pillar h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.strategy-pillar p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.recommended-etfs, .stock-categories, .liquidity-uses {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.recommended-etfs span, .stock-categories span, .liquidity-uses span {
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Cost Optimization */
.cost-optimization {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.cost-optimization h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.cost-traps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cost-trap {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 8px;
    padding: 1.5rem;
}

.trap-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.trap-content h4 {
    color: #dc2626;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.trap-content p {
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.trap-content strong {
    font-weight: 600;
}

/* Cost Saving Tips */
.cost-saving-tips {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.cost-saving-tips h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.saving-strategies {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.saving-tip {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.saving-tip h4 {
    color: #10b981;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.saving-tip p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tip-example {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f0fdf4;
    border-radius: 6px;
    padding: 1rem;
}

.tip-example span {
    color: #166534;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Cost Comparison */
.cost-comparison {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.cost-comparison h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.comparison-scenario p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cost-scenarios {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    width: fit-content;
    margin: auto;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.scenario {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.scenario.expensive {
    border-color: #fecaca;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.scenario.recommended {
    border-color: #bbf7d0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.scenario h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.scenario.expensive h4 {
    color: #dc2626;
}

.scenario.recommended h4 {
    color: #166534;
}

.scenario-costs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cost-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.cost-line.total {
    border-bottom: none;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-weight: 700;
}

.cost-line span {
    color: #4b5563;
}

.cost-line strong {
    font-weight: 700;
}

.scenario.expensive .cost-line strong {
    color: #dc2626;
}

.scenario.recommended .cost-line strong {
    color: #166534;
}

.savings-result {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.savings-result h4 {
    color: #166534;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.savings-result p {
    color: #166534;
    margin: 0;
    line-height: 1.6;
}

/* Common Mistakes */
.common-mistakes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.mistakes-intro p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.125rem;
}

.mistake-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mistake-category {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.mistake-category h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.mistake-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mistake-item {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 8px;
    padding: 1.5rem;
}

.mistake-item h4 {
    color: #dc2626;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.mistake-details p {
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.mistake-details strong {
    font-weight: 600;
}

/* Success Tips */
.success-tips {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    padding: 2rem;
}

.success-tips h3 {
    color: #166534;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.success-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.success-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
}

.success-icon {
    font-size: 1.125rem;
    color: #10b981;
}

.success-item span:last-child {
    color: #166534;
    font-weight: 500;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .analogy-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .depot-options {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .special-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .broker-comparison-depot {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .selection-criteria {
        grid-template-columns: 1fr;
    }
    
    .data-categories {
        grid-template-columns: 1fr;
    }
    
    .ident-checklist {
        grid-template-columns: 1fr;
    }
    
    .ident-steps::before {
        left: 16px;
    }
    
    .ident-step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .getting-started {
        grid-template-columns: 1fr;
    }
    
    .beginner-strategy {
        grid-template-columns: 1fr;
    }
    
    .cost-scenarios {
        grid-template-columns: 1fr;
    }
} 