* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f7f9;
    color: #17202a;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */

.header {
    height: 70px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #087f5b;
}

nav {
    display: flex;
    gap: 25px;
}

.top-link {
    font-weight: 600;
    color: #374151;
}

.top-link:hover {
    color: #087f5b;
}

/* HERO */

.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-content {
    max-width: 750px;
}

.badge {
    display: inline-block;
    background: #e8f7f1;
    color: #087f5b;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #087f5b;
}

.hero p {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.main-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* BUTTONS */

.btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
}

.btn-primary {
    background: #087f5b;
    color: white;
}

.btn-primary:hover {
    background: #066b4d;
}

.btn-secondary {
    background: white;
    color: #087f5b;
    border: 1px solid #087f5b;
}

.btn-secondary:hover {
    background: #e8f7f1;
}

.full {
    width: 100%;
}

/* FORMS */

.form-page {
    padding: 50px 20px;
}

.form-card {
    background: white;
    max-width: 500px;
    margin: auto;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.form-card.large {
    max-width: 900px;
}

.form-card h1 {
    margin-bottom: 10px;
}

.subtitle {
    color: #6b7280;
    margin-bottom: 30px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
    margin-top: 18px;
}

input,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-size: 15px;
    background: white;
}

input:focus,
select:focus {
    outline: none;
    border-color: #087f5b;
}

.form-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 25px;
    margin-top: 30px;
}

.form-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info {
    background: #f3f4f6;
    padding: 12px;
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
    border-radius: 6px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 35px;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
}

/* DASHBOARD */

.dashboard-header {
    height: 70px;
    background: white;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-header a {
    margin-left: 20px;
    color: #087f5b;
}

.dashboard {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* STATS */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.stat-card span {
    color: #6b7280;
    font-size: 14px;
}

.stat-card strong {
    display: block;
    font-size: 32px;
    margin-top: 10px;
}

/* PANEL */

.panel {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-top: 25px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-header input {
    max-width: 250px;
}

/* TABLE */

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

th {
    font-size: 13px;
    color: #6b7280;
}

td {
    font-size: 14px;
}

.small-btn {
    border: 1px solid #087f5b;
    background: white;
    color: #087f5b;
    padding: 7px 12px;
    border-radius: 5px;
    cursor: pointer;
}

/* STATUS */

.status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status.pending {
    background: #fff3cd;
    color: #856404;
}

.status.active {
    background: #d1fae5;
    color: #065f46;
}

.status.correction {
    background: #fee2e2;
    color: #991b1b;
}

/* AGENT */

.agent-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.action-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 25px;
    transition: 0.2s;
}

.action-card:hover {
    border-color: #087f5b;
    transform: translateY(-2px);
}

.action-card h2 {
    margin: 15px 0 10px;
    font-size: 18px;
}

.action-card p {
    color: #6b7280;
    font-size: 14px;
}

.icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f7f1;
    color: #087f5b;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
}

/* FOOTER */

footer {
    height: 50px;
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    padding: 15px;
}

/* MOBILE */

@media (max-width: 700px) {

    .header {
        padding: 0 20px;
    }

    nav {
        gap: 10px;
    }

    .top-link {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .main-buttons {
        flex-direction: column;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .agent-actions {
        grid-template-columns: 1fr;
    }

    .panel {
        overflow-x: auto;
    }

    table {
        min-width: 700px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}