body {
    box-sizing: inherit;
    -webkit-tap-highlight-color: transparent;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    background: #0b1a2e;
    text-decoration: none;
    font-family: "metropolis-regular", sans-serif;
    font-style: normal;
    font-weight: normal;
}

/* ── Hero ── */

.surveys-hero {
    color: white;
    margin-top: 90px;
    margin-bottom: 50px;
    text-align: center;
    animation: fadeInDown 0.8s ease;
    border-bottom: 3px solid #FF8000;
}

.surveys-hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: #FF8000;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.surveys-intro {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.85;
}

/* ── Section ── */

.surveys-section {
    padding: 60px 0 90px;
    background: #0b1a2e;
}

.surveys-section .container {
    /* max-width: 860px; */
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Stacked cards ── */

.surveys-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Individual card ── */

.survey-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    border-left: 5px solid #FF8000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.survey-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.survey-card-content {
    flex: 1;
}

.survey-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001d3d;
    margin-bottom: 10px;
}

.survey-card-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.65;
    margin: 0;
    font-size: 1rem;
}

.survey-card-action {
    flex-shrink: 0;
}

.survey-card-action .btn-primary {
    display: inline-block;
    background: #FF8000;
    color: #001d3d;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.survey-card-action .btn-primary:hover {
    background: #e67300;
    transform: scale(1.04);
}

/* ── Empty state ── */

.surveys-empty {
    text-align: center;
    color: #8ba3c1;
    font-size: 16px;
    padding: 48px 0;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
    body .surveys-hero {
        margin-top: 10px;
    }

    .surveys-hero h1 {
        padding-top: 90px;
    }
}

@media (max-width: 768px) {
    .surveys-hero h1 {
        font-size: 28px;
    }

    .surveys-section {
        padding: 40px 0 60px;
    }

    .survey-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 18px;
    }

    .survey-card-action {
        width: 100%;
    }

    .survey-card-action .btn-primary {
        width: 100%;
        text-align: center;
    }
}
