/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: -2;
}

.hero-content--left {
    max-width: 820px;
}

.hero.hero--service {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
}

.pill--outline {
    color: #f7d34f;
    border: 1px solid #f7d34f;
    background-color: rgba(0, 0, 0, 0.18)
}

.hero.hero--service h1 {
    margin: 18px 0 40px;
    font-size: 48px;
    line-height: 1.05;
}

.hero-lead {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
}

.hero-paragraph {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
}

.hero-bullets--service {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 18px 0 22px;
}

.bullet {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-weight: 600;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
}

.bullet-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(247, 211, 79, 0.18);
    color: #f7d34f;
    border: 1px solid rgba(247, 211, 79, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bullet-icon svg {
    width: 18px;
    height: 18px;
}

.btn-hero--service {
    display: inline-flex;
}

/* Services Detail Section */
.services-detail {
    padding: 80px 0;
    background-color: #fafafa;
}

.services-title {
    text-align: center;
    font-size: 36px;
    margin: 0 0 16px;
    color: #111;
    font-weight: 700;
}

.services-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px;
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f7d34f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.service-card p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.service-examples {
    font-size: 14px;
    color: #6b7280;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
}

.badge-ok {
    background: #dcfce7;
    color: #166534;
}

.badge-warning {
    background: #fee2e2;
    color: #991b1b;
}

.badge-done {
    background: #dbeafe;
    color: #1e40af;
}

/* Compliance Section */
.compliance {
    padding: 60px 0;
    background-color: #ffffff;
}

.compliance-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.compliance-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-icon svg {
    width: 36px;
    height: 36px;
}

.compliance-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.compliance-head h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.compliance-badge {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
}

.compliance-text {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.65;
    color: #374151;
}

.compliance-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
}

.compliance-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    line-height: 1.5;
}

.compliance-list svg {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #166534;
}

/* Reporting Section */
.reporting {
    padding: 80px 0;
    background-color: #fafafa;
}

.reporting-title {
    text-align: center;
    font-size: 36px;
    margin: 0 0 16px;
    color: #111;
    font-weight: 700;
}

.reporting-subtitle {
    text-align: center;
    margin: 0 auto 42px;
    max-width: 760px;
    font-size: 24px;
    line-height: 1.6;
    color: #6b7280;
}

.reporting-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.report-card {
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.report-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f7d34f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.report-icon svg {
    width: 24px;
    height: 24px;
}

.report-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
}

.report-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #6b7280;
}

.report-example {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
}

.report-example-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-bottom: 16px;
}

.report-example-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
}

.report-row {
    display: grid;
    grid-template-columns: 1fr 1fr 160px;
    gap: 18px;
    align-items: start;
    margin-bottom: 16px;
}

.report-k {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 6px;
}

.report-v {
    font-size: 16px;
    color: #111;
    line-height: 1.4;
}

.report-col-status {
    text-align: right;
}

.status-pill {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.status-pill--done {
    background: #dbeafe;
    color: #1e40af;
}

.report-lines p {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

/* Audience Section */
.audience {
    padding: 80px 0;
    background-color: #ffffff;
}

.audience-title {
    text-align: center;
    font-size: 36px;
    margin: 0 0 16px;
    color: #111;
    font-weight: 700;
}

.audience-subtitle {
    text-align: center;
    margin: 0 auto 42px;
    max-width: 720px;
    font-size: 24px;
    line-height: 1.6;
    color: #6b7280;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.audience-card {
    display: flex;
    gap: 24px;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.audience-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-icon svg {
    width: 24px;
    height: 24px;
}

.audience-content h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.audience-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

/* Process Table Section */
.process-table {
    padding: 80px 0;
    background: #ffffff;
}

.process-title {
    text-align: center;
    font-size: 36px;
    margin: 0 0 16px;
    color: #111;
    font-weight: 700;
}

.process-subtitle {
    text-align: center;
    margin: 0 auto 42px;
    max-width: 720px;
    font-size: 24px;
    line-height: 1.6;
    color: #6b7280;
}

.process-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.process {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.process thead th {
    background: #fafafa;
    color: #111;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.process thead th+th {
    border-left: 1px solid #eeeeee;
}

.process tbody td {
    padding: 16px 24px;
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    vertical-align: top;
    border-bottom: 1px solid #eeeeee;
}

.process tbody tr:last-child td {
    border-bottom: 0;
}

.process tbody td+td {
    border-left: 1px solid #f0f0f0;
}


.phase-title {
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.phase-sub {
    font-size: 16px;
    color: #6b7280;
}

.process thead th:first-child,
.process tbody td:first-child {
    width: 32%;
}

.process thead th:nth-child(2),
.process tbody td:nth-child(2) {
    width: 34%;
}

.process thead th:nth-child(3),
.process tbody td:nth-child(3) {
    width: 34%;
}


/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    background:
        radial-gradient(circle at top,
            rgba(255, 255, 255, 0.06),
            rgba(0, 0, 0, 0.75)),
        linear-gradient(135deg, #0f172a, #020617);
    color: #ffffff;
    text-align: center;
}

.cta-inner {
    max-width: 720px;
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.cta-text {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(250, 204, 21, 0.35);
}

.cta-note {
    margin-top: 18px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}


/* responsive */
@media (max-width: 1100px) {

    /* Reporting Section */
    .reporting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    /* Hero Section */
    .hero.hero--service {
        min-height: 0;
    }

    .hero.hero--service h1 {
        font-size: 38px;
    }

    .bullet {
        width: 100%;
    }

    /* Services Detail Section */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Audience Section */
    .audience-grid {
        grid-template-columns: 1fr;
    }

    /* Process Table Section */
    .process-card {
        overflow-x: auto;
    }

    .process {
        min-width: 860px;
    }
}

@media (max-width: 768px) {

    /* Compliance Section */
    .compliance-card {
        grid-template-columns: 1fr;
    }

    .compliance-icon {
        width: 56px;
        height: 56px;
    }

    .compliance-list {
        grid-template-columns: 1fr;
    }

    /* Final CTA Section */
    .cta-title {
        font-size: 30px;
    }

    .cta-text {
        font-size: 14px;
    }
}

@media (max-width: 720px) {

    /* Reporting Section */
    .reporting-grid {
        grid-template-columns: 1fr;
    }

    .report-row {
        grid-template-columns: 1fr;
    }

    .report-col-status {
        text-align: left;
    }
}