:root {
    --brand: #304AA6;
    --brand-soft: rgba(48, 74, 166, 0.08);
    --brand-soft-hover: rgba(48, 74, 166, 0.14);
    --bg: #F5F6F8;
    --surface: #FFFFFF;
    --text: #1F2937;
    --muted: #4B5563;

    --yellow-dark: #fdaa38;
    --yellow-light: #ffd051;
}

/* Base */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
}

i {
    color: #fdaa38;
}

.btn--primary {
    background: linear-gradient(135deg, var(--yellow-dark), var(--yellow-light)) !important;
}

.disc-card h3 {
    color: var(--yellow-dark) !important;
}

.container {
    max-width: 1120px;
    margin: auto;
    /* padding: 64px 24px; */
}

h1 {
    /* font-size: 44px; */
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.5;
    /* line-height: 52px; */
    font-weight: 800;
    margin-bottom: 12px;
}

.section-desc {
    max-width: 760px;
    font-size: 16px;
    line-height: 26px;
    color: var(--muted);
    margin-bottom: 48px;
}

/* Card */
.card {
    background: var(--surface);
    border-radius: 20px;
    padding: 30px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 30px 60px rgba(0, 0, 0, 0.06),
        0 8px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Card hover — IMPORTANT */
.card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 40px 80px rgba(0, 0, 0, 0.08),
        0 12px 24px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Strategy grid */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 72px;
}

.strategy-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.strategy-card.featured {
    background: linear-gradient(180deg, var(--surface), var(--brand-soft));
}

/* Icon */
.icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.25s ease;
}

.card:hover .icon {
    background: var(--brand-soft-hover);
}

.strategy-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.strategy-card span {
    font-size: 13px;
    color: var(--muted);
}

.strategy-card p {
    font-size: 14px;
    line-height: 22px;
    color: var(--muted);
    margin: 0;
}

/* Providers marquee */
.marquee {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 22s linear infinite;
}

.provider-card {
    min-width: 160px;
    padding: 18px;
    border-radius: 16px;
    background: var(--surface);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.provider-card i {
    /* color: var(--brand); */
    color: var(--yellow-dark);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Two column */
.two-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    margin-bottom: 72px;
}

/* Form */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 16px;
    position: relative;
}

.form-group p.error {
    position: absolute;
    bottom: -14px;
    font-size: 10px;
    color: red;
    margin: 0;
}

input,
textarea {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    font-family: inherit;
    font-size: 14px;
}

button {
    height: 48px;
    border-radius: 16px;
    border: none;
    font-weight: 600;
    background: var(--brand);
    color: #fff;
    cursor: pointer;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    /* z-index: 999; */
    z-index: 2001;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: var(--surface);
    border-radius: 20px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;

    display: flex;
    flex-direction: column;

    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

/* Fixed header */
.modal-header {
    position: sticky;
    top: 0;
    z-index: 10;

    display: flex;
    justify-content: flex-end;

    padding: 14px 18px;
    background: var(--surface);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Scrollable body */
.modal-body {
    padding: 32px;
    overflow-y: auto;
    max-height: calc(90vh - 64px);
}

/* SCROLLBAR STYLING */
.modal-card::-webkit-scrollbar {
  width: 2px;
  height: 10px;
  display: none;
}

.modal-card::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  margin-right: 20px;
}

.modal-card::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* SCROLLBAR STYLING */

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--muted);
    background: #fff;
}

.modal-text {
    font-size: 14px;
    line-height: 22px;
    color: var(--muted);
    margin-bottom: 24px;
}

.consent-text {
    font-size: 14px;
    line-height: 1.25;
}

/* Responsive */
@media (max-width: 900px) {
    .strategy-grid {
        grid-template-columns: 1fr;
    }

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

    .section-desc {
        margin-bottom: 24px;
    }
}