:root {
    --color-gold: #b39a3d;
    --color-gold-light: #d4b86a;
    --color-dark: #0f172a;
    --color-slate: #64748b;
    --color-light: #f8fafc;
    --color-white: #ffffff;
    --color-onoffice: #003366;

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── NAVIGATION ─── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-slate);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 51, 102, 0.08);
    color: var(--color-onoffice);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    border: 1px solid rgba(0, 51, 102, 0.15);
}

.nav-badge svg {
    width: 14px;
    height: 14px;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--color-light) 100%);
}

.hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.hero-context {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(179, 154, 61, 0.1);
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(179, 154, 61, 0.2);
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--color-dark);
}

.text-gold {
    color: var(--color-gold);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-slate);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── PHONE CTA (The Star) ─── */
.phone-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.phone-number-display {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: 1rem;
    padding: 1.25rem 2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(179, 154, 61, 0.15);
    position: relative;
    overflow: hidden;
}

.phone-number-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(179, 154, 61, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.phone-number-display:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(179, 154, 61, 0.25);
    border-color: var(--color-gold-light);
}

.phone-number-display:hover::before {
    opacity: 1;
}

.phone-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(179, 154, 61, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(179, 154, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(179, 154, 61, 0); }
}

.phone-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.phone-number-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate);
    font-weight: 600;
}

.phone-digits {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

.phone-hint {
    font-size: 0.85rem;
    color: var(--color-slate);
    opacity: 0.8;
}

/* ─── SECTIONS GENERAL ─── */
.section {
    padding: 5rem 5%;
    position: relative;
}

.section-inner {
    max-width: 960px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--color-slate);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

/* ─── STEPS (So funktioniert's) ─── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--color-white);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.step-number {
    display: none;
}

.step-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--color-slate);
    line-height: 1.6;
}

/* ─── SCENARIO BOX ─── */
.scenario-box {
    background: var(--color-white);
    border: 1px solid rgba(179, 154, 61, 0.2);
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
    margin-top: 2.5rem;
    position: relative;
}

.scenario-box::before {
    content: '💡';
    position: absolute;
    top: -14px;
    left: 2rem;
    background: var(--color-light);
    padding: 0 0.5rem;
    font-size: 1.25rem;
}

.scenario-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.scenario-box p {
    font-size: 0.95rem;
    color: var(--color-slate);
    line-height: 1.7;
    margin: 0;
}

.scenario-box em {
    color: var(--color-dark);
    font-style: italic;
}

/* ─── FEATURES GRID ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(179, 154, 61, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(179, 154, 61, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--color-dark);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--color-slate);
    line-height: 1.55;
    margin: 0;
}

/* ─── CTA SECTION (Repeat Phone) ─── */
.cta-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1e293b 100%);
    color: white;
    text-align: center;
    padding: 4rem 5%;
    border-radius: 0;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-section .phone-number-display {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
}

.cta-section .phone-label {
    color: rgba(255, 255, 255, 0.6);
}

.cta-section .phone-digits {
    color: white;
}

.cta-section .phone-hint {
    color: rgba(255, 255, 255, 0.5);
}

/* ─── PRICING ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.pricing-card {
    background: var(--color-white);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.pricing-card.highlighted {
    border-color: var(--color-gold);
    box-shadow: 0 8px 30px rgba(179, 154, 61, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-slate);
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--color-slate);
    margin-bottom: 1.5rem;
}

.pricing-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 0 -0.5rem 1.25rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--color-slate);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.pricing-extra-card {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.pricing-extra-card .extra-icon {
    width: 40px;
    height: 40px;
    background: rgba(179, 154, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin: 0 auto 0.75rem;
}

.pricing-extra-card .extra-icon svg {
    width: 18px;
    height: 18px;
}

.pricing-extra-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.pricing-extra-card .extra-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 0.35rem;
}

.pricing-extra-card p {
    font-size: 0.85rem;
    color: var(--color-slate);
    line-height: 1.5;
    margin: 0;
}

.pricing-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: rgba(179, 154, 61, 0.06);
    border: 1px solid rgba(179, 154, 61, 0.15);
    border-radius: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-slate);
    line-height: 1.6;
}

.pricing-note strong {
    color: var(--color-dark);
}

.pricing-vat {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-slate);
    opacity: 0.7;
    margin-top: 1.5rem;
}

/* ─── CALENDAR BOOKING ─── */
.booking-section {
    padding: 5rem 5%;
    background: var(--color-white);
}

.booking-inner {
    max-width: 720px;
    margin: 0 auto;
}

.booking-iframe-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--color-white);
    min-height: 600px;
}

.booking-iframe-wrapper iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

/* ─── FAQ ACCORDION ─── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: rgba(179, 154, 61, 0.3);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    gap: 1rem;
    user-select: none;
}

.faq-header:hover {
    background: rgba(0, 0, 0, 0.01);
}

.faq-question {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-dark);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--color-slate);
    line-height: 1.7;
}

/* ─── FOOTER ─── */
.site-footer {
    padding: 2.5rem 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
}

.footer-logo img {
    height: 28px;
    margin-bottom: 1.25rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.footer-links a {
    color: var(--color-slate);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-slate);
    opacity: 0.6;
}

.footer-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--color-slate);
    opacity: 0.7;
}

.footer-trust-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .site-nav {
        padding: 0.75rem 4%;
    }

    .nav-right .nav-link {
        display: none;
    }

    .nav-badge {
        display: none;
    }

    .site-nav {
        justify-content: center;
    }

    .hero {
        padding: 7rem 5% 3rem;
        min-height: auto;
    }

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

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

    .phone-number-display {
        padding: 1rem 1.25rem;
        width: 100%;
        justify-content: center;
    }

    .phone-digits {
        font-size: 1.35rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-extras {
        grid-template-columns: 1fr;
    }

    .scenario-box {
        padding: 1.5rem;
    }

    .section {
        padding: 3rem 5%;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .cta-section {
        padding: 3rem 5%;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-trust {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .phone-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .phone-digits {
        font-size: 1.2rem;
    }

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