/* Homepage-only premium polish — same palette, finer details. */

/* --- Hero enhancements --- */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content > .hero-badge,
.hero-content > h1,
.hero-content > p,
.hero-content > .hero-buttons,
.hero-content > .hero-trust-strip,
.hero-content > .hero-features,
.hero-image-frame {
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > .hero-badge { animation-delay: 0.05s; }
.hero-content > h1 { animation-delay: 0.12s; }
.hero-content > p { animation-delay: 0.2s; }
.hero-content > .hero-buttons { animation-delay: 0.28s; }
.hero-content > .hero-trust-strip { animation-delay: 0.36s; }
.hero-content > .hero-features { animation-delay: 0.44s; }
.hero-image-frame { animation-delay: 0.18s; }

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 32px;
}

.hero-trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #c8cdcc;
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-trust-strip span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 650px;
}

.hero-image-frame::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(0, 155, 119, 0.55), rgba(0, 155, 119, 0.05) 55%, transparent);
    z-index: 0;
}

.hero-image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        0 32px 80px rgba(0, 0, 0, 0.45);
}

.hero-float-card {
    position: absolute;
    right: -12px;
    bottom: 28px;
    z-index: 2;
    padding: 16px 20px;
    border: 1px solid rgba(0, 155, 119, 0.35);
    border-radius: 18px;
    background: rgba(17, 19, 21, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-float-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-float-card strong {
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

/* --- Section curves --- */
.section-curve {
    display: block;
    height: 64px;
    margin-top: -1px;
}

.section-curve-dark-light {
    background: var(--light);
    clip-path: ellipse(115% 100% at 50% 100%);
}

.section-curve-light-white {
    background: var(--white);
    clip-path: ellipse(115% 100% at 50% 100%);
}

.section-curve-white-light {
    background: var(--light);
    clip-path: ellipse(115% 100% at 50% 0%);
}

/* --- Trust band --- */
.trust-band {
    padding: 36px 0;
    background: #161a1c;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-band-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-item-icon {
    display: grid;
    flex-shrink: 0;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 155, 119, 0.12);
    color: var(--primary);
}

.trust-item-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.trust-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
}

.trust-item span {
    color: #9aa0a4;
    font-size: 0.82rem;
    line-height: 1.5;
}

/* --- Section headings with accent --- */
.section-heading-accent {
    padding-left: 18px;
    border-left: 3px solid var(--primary);
    margin-bottom: 0;
}

.section-heading-accent .section-tag {
    display: inline-block;
}

.section-heading-accent h2 {
    letter-spacing: -0.03em;
}

/* --- Service promo & featured cards --- */
.service-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    padding: 22px 28px;
    border: 1px solid rgba(0, 155, 119, 0.28);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(0, 155, 119, 0.1), rgba(0, 155, 119, 0.03));
    color: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-promo:hover {
    border-color: rgba(0, 155, 119, 0.45);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.service-promo-text strong {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 1.15rem;
}

.service-promo-text span {
    color: #667074;
    font-size: 0.92rem;
    line-height: 1.6;
}

.service-promo-badge {
    flex-shrink: 0;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
}

.service-card {
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    border-color: rgba(0, 155, 119, 0.35);
    box-shadow:
        var(--shadow-medium),
        0 0 0 1px rgba(0, 155, 119, 0.12);
}

.service-card-featured {
    border-color: rgba(0, 155, 119, 0.32);
    background: linear-gradient(180deg, rgba(0, 155, 119, 0.05), var(--white));
}

.service-card-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-icon svg {
    stroke-width: 1.6;
}

/* --- Steps (So funktioniert's) --- */
.steps-section {
    padding: 140px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 155, 119, 0.25), transparent);
    pointer-events: none;
}

.step-card {
    position: relative;
    padding: 38px 32px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.step-card:hover {
    border-color: rgba(0, 155, 119, 0.3);
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px);
}

.step-number {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 12px 30px rgba(0, 155, 119, 0.28);
}

.step-card h3 {
    margin-bottom: 14px;
    color: var(--dark);
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

.step-card p {
    color: #667074;
    font-size: 0.95rem;
    line-height: 1.75;
}

/* --- Pricing polish --- */
.price-card {
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow: var(--shadow-soft);
}

.price-card-featured {
    box-shadow:
        0 22px 60px rgba(17, 19, 21, 0.18),
        0 0 0 1px rgba(0, 155, 119, 0.2);
}

.price-card-combo {
    box-shadow:
        0 18px 50px rgba(0, 155, 119, 0.12),
        0 0 0 1px rgba(0, 155, 119, 0.18);
}

.price {
    font-variant-numeric: tabular-nums;
}

.pricing-trust-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    margin-top: 28px;
    color: #6a7377;
    font-size: 0.84rem;
    font-weight: 600;
}

.pricing-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pricing-trust-line span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

/* --- Contact area visual --- */
.contact-area-pin {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
    padding: 20px 22px;
    border: 1px solid rgba(0, 155, 119, 0.18);
    border-radius: 18px;
    background: rgba(0, 155, 119, 0.05);
}

.contact-area-pin-icon {
    display: grid;
    flex-shrink: 0;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary);
    color: var(--white);
}

.contact-area-pin-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.contact-area-pin strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 0.98rem;
}

.contact-area-pin span {
    color: #667074;
    font-size: 0.86rem;
    line-height: 1.6;
}

.contact-form {
    border-left: 3px solid var(--primary);
}

/* --- Floating WhatsApp --- */
.wa-float {
    position: fixed;
    right: 30px;
    bottom: 98px;
    z-index: 21;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.wa-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 18px 48px rgba(37, 211, 102, 0.48);
}

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header scrolled state --- */
.header.is-scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.header.is-scrolled .logo img {
    height: 88px;
    transition: height 0.35s ease;
}

.navigation a.is-active {
    color: var(--primary);
}

.navigation a.is-active::after {
    width: 100%;
}

@media (max-width: 760px) {
    .hero-trust-strip { justify-content: center; }
    .hero-float-card { right: 8px; bottom: 16px; padding: 12px 16px; }
    .hero-float-card strong { font-size: 1.2rem; }
    .trust-band-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
    .service-promo { flex-direction: column; align-items: flex-start; text-align: left; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .steps-grid::before { display: none; }
    .steps-section { padding: 90px 0; }
    .services-grid-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        margin-inline: -4%;
        padding: 4px 4% 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .services-grid-scroll::-webkit-scrollbar { display: none; }
    .services-grid-scroll .service-card {
        flex: 0 0 86%;
        scroll-snap-align: center;
    }
    .wa-float {
        right: 18px;
        bottom: 82px;
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
}

.section-curve-premium-light {
    background: var(--light);
    clip-path: ellipse(115% 100% at 50% 100%);
}

/* --- Premium section (homepage) --- */
.premium-section {
    padding: 110px 0 100px;
    background: #121618;
    color: var(--white);
}

.premium-intro { max-width: 720px; margin-bottom: 36px; }
.premium-intro h2 {
    margin: 14px 0 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    line-height: 1.12;
}
.premium-intro p { color: #b0b5b8; line-height: 1.8; }

.premium-equipment {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.premium-equipment span {
    padding: 8px 14px;
    border: 1px solid rgba(0, 155, 119, 0.35);
    border-radius: 999px;
    background: rgba(0, 155, 119, 0.1);
    color: #b8f0df;
    font-size: 0.8rem;
    font-weight: 700;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.premium-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.premium-card:hover {
    border-color: rgba(0, 155, 119, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}
.premium-card-highlight {
    border-color: rgba(0, 155, 119, 0.4);
    background: rgba(0, 155, 119, 0.08);
}
.premium-card-badge {
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.premium-card h3 { margin-bottom: 12px; font-size: 1.15rem; letter-spacing: -0.02em; }
.premium-card p { color: #a8adaf; font-size: 0.88rem; line-height: 1.65; }
.premium-price { margin: 16px 0 18px; color: var(--primary); font-size: 1.2rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.premium-card a { margin-top: auto; color: var(--primary); font-size: 0.9rem; font-weight: 800; text-decoration: none; }
.premium-card a span { display: inline-block; margin-left: 4px; transition: transform var(--transition); }
.premium-card a:hover span { transform: translateX(4px); }

.premium-cta { display: flex; flex-wrap: wrap; gap: 14px; }

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

@media (max-width: 760px) {
    .premium-section { padding: 82px 0; }
    .premium-grid { grid-template-columns: 1fr; }
    .premium-cta .btn-primary, .premium-cta .btn-secondary { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content > *,
    .hero-image-frame {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .reveal { opacity: 1; transform: none; transition: none; }
}
