/* ═══════════════════════════════════════════════════
   ExodaFood – Gemeinsames Stylesheet für Feature-Unterseiten
   Prefix: fp- (feature page)
   ═══════════════════════════════════════════════════ */

/* Hero */
.fp-hero {
    background: linear-gradient(135deg, #489000 0%, #78C018 55%, #A8D830 100%);
    padding: 140px 0 90px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fp-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: #f9fafb;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.fp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.fp-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.fp-hero p.fp-sub {
    font-size: 1.1rem;
    opacity: .9;
    max-width: 580px;
    margin: 0 auto 36px;
}

.fp-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: .2s;
}

.fp-btn.solid {
    background: white;
    color: #489000;
}

.fp-btn.solid:hover {
    background: #f0fae4;
}

.fp-btn.outline {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .4);
    color: white;
}

.fp-btn.outline:hover {
    background: rgba(255, 255, 255, .25);
}

/* Sticky subnav */
.fp-nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 62px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.fp-nav-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.fp-nav-inner::-webkit-scrollbar {
    display: none;
}

.fp-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: .2s;
    text-decoration: none;
}

.fp-nav a:hover {
    color: #78C018;
    border-bottom-color: #78C018;
}

/* Breadcrumb */
.fp-breadcrumb {
    background: white;
    border-bottom: 1px solid #f3f4f6;
    padding: 10px 0;
    font-size: 13px;
    color: #6b7280;
}

.fp-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.fp-breadcrumb a:hover {
    color: #78C018;
}

.fp-breadcrumb span {
    margin: 0 6px;
    color: #d1d5db;
}

/* Main content */
.fp-content {
    background: #f9fafb;
    padding: 64px 0 100px;
}

/* Section */
.fp-section {
    margin-bottom: 72px;
    scroll-margin-top: 130px;
}

.fp-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.fp-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-section-title h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.fp-lead {
    font-size: 1rem;
    color: #4b5563;
    max-width: 720px;
    margin-bottom: 32px;
    line-height: 1.75;
}

/* Grid */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.fp-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 20px;
}

/* Card */
.fp-card {
    background: white;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .05);
}

.fp-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.fp-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.75;
}

.fp-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

/* Steps */
.fp-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fp-step {
    display: flex;
    gap: 20px;
    position: relative;
}

.fp-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -8px;
    width: 2px;
    background: #e5e7eb;
}

.fp-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #78C018, #A8D830);
    color: white;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.fp-step-body {
    background: white;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .05);
    flex: 1;
    margin-bottom: 12px;
}

.fp-step-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.fp-step-body p {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Bullets */
.fp-bullets {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fp-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: #374151;
    line-height: 1.6;
}

.fp-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #78C018;
    flex-shrink: 0;
    margin-top: 7px;
}

/* Info box */
.fp-info {
    background: linear-gradient(135deg, #f0fae4, #fafff5);
    border: 1px solid #c8e89a;
    border-radius: 14px;
    padding: 22px 26px;
    margin-top: 24px;
}

.fp-info-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #489000;
    margin-bottom: 8px;
}

.fp-info p {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.75;
    margin: 0;
}

/* Formula / code block */
.fp-formula {
    background: #111827;
    border-radius: 16px;
    padding: 26px 28px;
    color: white;
}

.fp-formula-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A8D830;
    margin-bottom: 14px;
}

.fp-formula-eq {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 2;
    color: #e5e7eb;
}

.fp-formula-eq .hi {
    color: #A8D830;
    font-weight: 700;
}

.fp-formula-eq .comment {
    color: #6b7280;
    font-size: 12px;
}

.fp-formula p {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 14px;
    line-height: 1.7;
}

/* Table */
.fp-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.fp-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 14px;
}

.fp-table th {
    background: #f0fae4;
    color: #489000;
    font-weight: 700;
    padding: 13px 18px;
    text-align: left;
    font-size: 13px;
}

.fp-table td {
    padding: 12px 18px;
    border-top: 1px solid #f3f4f6;
    color: #374151;
    vertical-align: top;
}

.fp-table tr:hover td {
    background: #fafff5;
}

.fp-table td.val {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #78C018;
}

/* Tip row */
.fp-tip {
    display: flex;
    gap: 14px;
    background: white;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.fp-tip-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fp-tip-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.fp-tip-body p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

/* Tag chip */
.fp-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0fae4;
    color: #489000;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #c8e89a;
    margin-top: 12px;
}

.fp-tag.ai {
    background: #eef2ff;
    color: #4338ca;
    border-color: #c7d2fe;
}

.fp-tag.blue {
    background: #f0f9ff;
    color: #0369a1;
    border-color: #bae6fd;
}

.fp-tag.gray {
    background: #f9fafb;
    color: #374151;
    border-color: #e5e7eb;
}

/* Divider */
hr.fp-div {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 64px 0;
}

/* CTA */
.fp-cta {
    background: linear-gradient(135deg, #489000 0%, #78C018 50%, #A8D830 100%);
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    color: white;
}

.fp-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.fp-cta p {
    font-size: 1.05rem;
    opacity: .9;
    margin-bottom: 28px;
}

.fp-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.fp-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 14px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: .2s;
    backdrop-filter: blur(8px);
}

.fp-store-btn:hover {
    background: rgba(255, 255, 255, .25);
    transform: translateY(-2px);
}

/* Footer */
.fp-footer {
    background: #111827;
    color: #9ca3af;
    padding: 32px 0;
    text-align: center;
    font-size: 13px;
}

.fp-footer a {
    color: #9ca3af;
    margin: 0 10px;
    text-decoration: none;
}

.fp-footer a:hover {
    color: #A8D830;
}

.fp-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 640px) {
    .fp-hero {
        padding: 120px 0 70px;
    }

    .fp-grid,
    .fp-grid-2 {
        grid-template-columns: 1fr;
    }

    .fp-cta {
        padding: 40px 24px;
    }

    .fp-section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}