/* ============================================
   BHP Landing Pages — Shared Styles
   bhpomat.com
   ============================================ */

/* Hero */
.lp-hero {
    background: linear-gradient(135deg, #1a1f4e 0%, #242f67 50%, #2d3a7d 100%);
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.lp-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(240, 192, 64, 0.08);
    border-radius: 50%;
}
.lp-hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.lp-hero h1 .highlight {
    background: #f0c040;
    color: #1a1f4e;
    padding: 2px 10px;
    display: inline;
}
.lp-hero .lead {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 650px;
}

/* CTA Buttons */
.lp-cta-btn {
    display: inline-block;
    background: #f0c040;
    color: #1a1f4e;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}
.lp-cta-btn:hover {
    background: #e0b030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240,192,64,0.3);
    color: #1a1f4e;
}
.lp-cta-btn.outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-left: 15px;
}
.lp-cta-btn.outline:hover {
    background: #fff;
    color: #1a1f4e;
}

/* Sections */
.lp-section {
    padding: 70px 0;
}
.lp-section.alt {
    background: #f8f9fc;
}
.lp-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1f4e;
    margin-bottom: 15px;
    text-align: center;
}
.lp-section-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Steps */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.lp-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: relative;
}
.lp-step-num {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: #242f67;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 15px;
}
.lp-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1f4e;
    margin-bottom: 10px;
}
.lp-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Benefits */
.lp-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.lp-benefit {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e8eaf0;
    transition: all 0.3s ease;
}
.lp-benefit:hover {
    border-color: #242f67;
    box-shadow: 0 8px 25px rgba(36,47,103,0.08);
}
.lp-benefit-icon {
    font-size: 36px;
    margin-bottom: 15px;
}
.lp-benefit h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1f4e;
    margin-bottom: 10px;
}
.lp-benefit p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Warning Box */
.lp-warning-box {
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    border-left: 5px solid #dc2626;
    padding: 30px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
}
.lp-warning-box h3 {
    font-size: 20px;
    color: #dc2626;
    margin-bottom: 12px;
    font-weight: 700;
}
.lp-warning-box p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}
.lp-warning-box strong {
    color: #dc2626;
}

/* Info Box (blue variant) */
.lp-info-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-left: 5px solid #2563eb;
    padding: 30px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
}
.lp-info-box h3 {
    font-size: 20px;
    color: #2563eb;
    margin-bottom: 12px;
    font-weight: 700;
}
.lp-info-box p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

/* Compare Cards */
.lp-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.lp-compare-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}
.lp-compare-card.good {
    background: #f0fdf4;
    border: 2px solid #22c55e;
}
.lp-compare-card.bad {
    background: #fef2f2;
    border: 2px solid #dc2626;
}
.lp-compare-card .price {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0;
}
.lp-compare-card.good .price { color: #22c55e; }
.lp-compare-card.bad .price { color: #dc2626; }
.lp-compare-card .label {
    font-size: 14px;
    color: #666;
}

/* FAQ */
.lp-faq {
    max-width: 800px;
    margin: 0 auto;
}
.lp-faq-item {
    border: 1px solid #e8eaf0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}
.lp-faq-q {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1f4e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
}
.lp-faq-q:hover {
    background: #f8f9fc;
}
.lp-faq-q .arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
}
.lp-faq-q.active .arrow {
    transform: rotate(180deg);
}
.lp-faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.lp-faq-a.open {
    padding: 0 24px 18px;
    max-height: 500px;
}
.lp-faq-a p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Final CTA */
.lp-final-cta {
    background: linear-gradient(135deg, #1a1f4e, #242f67);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.lp-final-cta h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
}
.lp-final-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Internal Links */
.lp-links {
    background: #fff;
    padding: 40px 0;
}
.lp-links h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1f4e;
    margin-bottom: 20px;
    text-align: center;
}
.lp-links-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.lp-link-card {
    display: block;
    padding: 15px 25px;
    background: #f8f9fc;
    border-radius: 8px;
    text-decoration: none;
    color: #242f67;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.lp-link-card:hover {
    background: #242f67;
    color: #fff;
}

/* Table */
.lp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}
.lp-table th, .lp-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e8eaf0;
    font-size: 15px;
}
.lp-table th {
    background: #242f67;
    color: #fff;
    font-weight: 700;
}
.lp-table tr:hover td {
    background: #f8f9fc;
}

/* Obligations (pracodawcy page) */
.lp-obligations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.lp-obligation {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e8eaf0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
}
.lp-obligation:hover {
    border-color: #242f67;
    box-shadow: 0 6px 20px rgba(36,47,103,0.08);
}
.lp-obligation-icon {
    font-size: 32px;
    flex-shrink: 0;
}
.lp-obligation h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1f4e;
    margin-bottom: 8px;
}
.lp-obligation p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Topics (test page) */
.lp-topics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.lp-topic {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e8eaf0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
}
.lp-topic:hover {
    border-color: #242f67;
    box-shadow: 0 6px 20px rgba(36,47,103,0.08);
}
.lp-topic-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.lp-topic h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1f4e;
    margin-bottom: 8px;
}
.lp-topic p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Sample Questions (test page) */
.lp-sample-q {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
}
.lp-sample-q .question {
    font-size: 16px;
    font-weight: 600;
    color: #1a1f4e;
    margin-bottom: 12px;
}
.lp-sample-q .options {
    list-style: none;
    padding: 0;
}
.lp-sample-q .options li {
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e8eaf0;
}
.lp-sample-q .options li:hover {
    background: #f0f2f8;
    border-color: #242f67;
}
.lp-sample-q .options li.correct {
    background: #f0fdf4;
    border-color: #22c55e;
    color: #166534;
    font-weight: 600;
}
.lp-sample-q .options li.wrong {
    background: #fef2f2;
    border-color: #dc2626;
    color: #991b1b;
}

/* Responsive */
@media (max-width: 1024px) {
    .lp-steps { grid-template-columns: repeat(2, 1fr); }
    .lp-benefits { grid-template-columns: repeat(2, 1fr); }
    .lp-topics { grid-template-columns: 1fr; }
    .lp-obligations { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .lp-hero { padding: 50px 0 40px; }
    .lp-hero h1 { font-size: 28px; }
    .lp-section { padding: 50px 0; }
    .lp-section-title { font-size: 24px; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-benefits { grid-template-columns: 1fr; }
    .lp-compare { grid-template-columns: 1fr; }
    .lp-cta-btn.outline { margin-left: 0; margin-top: 10px; }
    .lp-table { font-size: 13px; }
    .lp-table th, .lp-table td { padding: 10px 12px; }
}
