/* ============================================================
   INFO PAGE – So läuft es ab
   ============================================================ */

/* HERO */
.tr-info-hero {
    position: relative;
    padding: 5rem 0 3.5rem;
    text-align: center;
    overflow: hidden;
}
.tr-info-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.tr-info-hero-inner { position: relative; z-index: 1; }

.tr-info-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tr-gold-dark);
    margin-bottom: 1rem;
}
.tr-info-h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #f0e8d8;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.tr-info-h1-accent {
    background: linear-gradient(135deg, var(--tr-gold), #f0d060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tr-info-sub {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* INTRO CARD */
.tr-info-intro-card {
    background: rgba(201,168,76,0.03);
}

/* OPTION CARDS */
.tr-info-option-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.tr-info-option-icon {
    color: var(--tr-gold-dark);
    margin-bottom: 0.25rem;
}
.tr-info-option-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tr-gold-dark);
}
.tr-info-option-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e8d9b8;
    margin: 0 0 0.25rem;
}
.tr-info-option-text {
    color: #888;
    font-size: 0.87rem;
    line-height: 1.75;
    flex: 1;
    margin: 0 0 0.75rem;
}

/* BUTTONS */
.tr-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: filter 0.2s, transform 0.15s;
    align-self: flex-start;
}
.tr-info-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}
.tr-info-btn-nav {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--tr-gold);
}
.tr-info-btn-tel {
    background: linear-gradient(135deg, var(--tr-gold-dark), var(--tr-gold));
    color: #1a0a12;
    font-weight: 700;
    border: none;
}

/* WHY CARD */
.tr-info-why-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.02);
}
.tr-info-why-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* FEATURE GRID */
.tr-info-feat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* BOTTOM CTA */
.tr-info-cta {
    background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(120,40,80,0.08));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}
.tr-info-cta-text {
    color: #aaa;
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}
.tr-info-cta-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.tr-info-cta-btns .tr-info-btn {
    align-self: auto;
}

@media (max-width: 576px) {
    .tr-info-cta-btns { flex-direction: column; align-items: center; }
    .tr-info-btn { width: 100%; justify-content: center; }
}