/* ================================================
   WIZZPER – KI TIPPS & TOOLS
   ================================================= */

/* GLOBAL */
body {
    font-family: "Inter", sans-serif;
    background: #fafafa;
    color: #222;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

h1 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 6px;
}

h2 {
    font-size: 1.3rem;
    color: #555;
    font-weight: 500;
    margin-top: 10px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-top: 40px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    font-size: 1.1rem;
    padding: 14px 12px 4px;
    margin: 0;
    font-weight: 700;
}

.card p {
    font-size: 0.9rem;
    color: #555;
    padding: 0 12px 16px;
}

/* BUTTON */
.button {
    background: #00b894;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    transition: background 0.2s;
}

.button:hover {
    background: #009e7d;
}

/* INTERNAL LINK BUTTONS */
.button-secondary {
    background: #e8f7f1;
    color: #0d8b6c;
    border: 2px solid #0d8b6c;
    padding: 10px 18px;
    border-radius: 10px;
    display: inline-block;
    margin: 10px;
    font-weight: 600;
    transition: 0.2s;
}
.button-secondary:hover {
    background: #0d8b6c;
    color: #fff;
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}
.faq p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #333;
}

/* MOBILE */
@media (max-width: 600px) {
    h1 {
        font-size: 1.6rem;
    }
    .card img {
        height: 160px;
    }
}


.score-compare {
    margin: 24px 0 32px;
    padding: 18px 20px;
    background: #f7f9fb;
    border-radius: 14px;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 14px;
}

.compare-box {
    padding: 14px 16px;
    border-radius: 12px;
    background: #ffffff;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.compare-box.highlight {
    border: 2px solid #3b82f6;
    background: #f0f6ff;
}

.compare-box .label {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
}

.compare-box .value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin: 6px 0;
}

.compare-box .sub {
    font-size: 0.8rem;
    color: #6b7280;
}

.compare-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #374151;
    text-align: center;
}
