:root {
    --primary: #5E43FF;
    --primary-light: #7D66FF;
    --primary-dark: #4A32DB;
    --secondary: #00D1B2;
    --accent: #FF8A00;
    --text-dark: #1F2937;
    /* 회색 본문 텍스트 대비를 조금 올려 가독성 강화 */
    --text-muted: #4B5563;
    --bg-light: #F9FAFB;
    --white: #ffffff;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Pretendard', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    word-break: keep-all;
    /* 기본은 '띄어쓰기(공백) 기준 줄바꿈' */
    overflow-wrap: normal;
}

html {
    scroll-behavior: smooth;
    /* 전체적으로 커 보이는 이슈가 있어 기본값은 16px로 조정 */
    font-size: 16px;
    /* 한글 줄바꿈을 더 자연스럽게 */
    line-break: strict;
}

body {
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 500;
    /* 모바일 포함: 띄어쓰기(공백) 기준 줄바꿈 유지 */
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

/* 기본 본문 가독성(길게 읽는 영역 기준) */
p {
    line-height: 1.75;
}

/* 공백이 없는 긴 문자열(이메일/URL/긴 번호 등)만 예외적으로 줄바꿈 허용 */
.allow-break-word,
.modal-body,
.footer-details,
.footer-notice-box,
.modern-table th,
.modern-table td {
    overflow-wrap: break-word;
}

/* 링크 가독성 + 키보드 포커스 */
a {
    color: inherit;
    text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    outline-offset: 0;
}

/* 폼 입력 포커스 보라 테두리 제거 */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--border);
}

/* ====================== */
/*   Floating Button(FAB) */
/* ====================== */
.fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 999999;
    display: flex;
    /* + 버튼이 아래, 메뉴가 위로 뜨도록 */
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 12px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(94, 67, 255, 0.28);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.fab-main:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 22px 55px rgba(94, 67, 255, 0.32);
}

.fab-menu {
    display: grid;
    gap: 10px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.fab.open .fab-menu {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.fab-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(6px);
    justify-content: center;
}

.fab-item:hover {
    transform: translateY(-1px);
    border-color: rgba(94, 67, 255, 0.35);
    box-shadow: var(--shadow-md);
}

.fab-emoji {
    font-size: 1.35rem;
    line-height: 1;
}

.fab-label {
    display: none;
}

@media (max-width: 480px) {
    .fab {
        right: 14px;
        bottom: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
    }

    .fab-main {
        width: 52px;
        height: 52px;
        font-size: 30px;
    }

    .fab-item {
        width: 46px;
        height: 46px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====================== */
/*       Navbar           */
/* ====================== */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -1px;
    z-index: 1001;
}

.nav-brand .logo-text {
    color: var(--primary);
}

.nav-brand .divider {
    color: #CBD5E1;
    margin: 0 8px;
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.nav-cta {
    color: var(--white);
}

.nav-links .btn.nav-cta {
    padding: 10px 18px;
    font-size: 0.98rem;
    line-height: 1.2;
    border-radius: 10px;
}

.nav-links a.nav-cta:hover {
    color: var(--white);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* ====================== */
/*      Hero Section      */
/* ====================== */
.hero-section {
    padding: 120px 0;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(94, 67, 255, 0.05) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(94, 67, 255, 0.08);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
    font-weight: 900;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    max-width: 600px;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ====================== */
/*        Sections        */
/* ====================== */
.section {
    padding: 120px 0;
}

.bg-light {
    background-color: var(--white);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.text-center {
    text-align: center;
}

/* Icon Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.icon-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: 0.4s;
    text-align: center;
}

.icon-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.icon-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.icon-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 2.2rem;
}

.icon-box.purple {
    background: rgba(94, 67, 255, 0.1);
    color: var(--primary);
}

.icon-box.green {
    background: rgba(0, 209, 178, 0.1);
    color: var(--secondary);
}

.icon-box.orange {
    background: rgba(255, 138, 0, 0.1);
    color: var(--accent);
}

/* Table Container */
.table-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px;
}

.modern-table th,
.modern-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    line-height: 1.65;
}

.modern-table th {
    background: #F9FAFB;
    font-weight: 700;
}

/* Coverage Cards */
.coverage-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.coverage-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 54px 42px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: 0.35s ease;
}

.coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(94, 67, 255, 0.25);
}

.coverage-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    margin: 0 auto 28px;
}

.coverage-icon.purple {
    background: rgba(94, 67, 255, 0.1);
    color: var(--primary);
}

.coverage-icon.orange {
    background: rgba(255, 138, 0, 0.1);
    color: var(--accent);
}

.coverage-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.coverage-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.55;
}

.coverage-note {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
}

.process-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.process-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.step-badge {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(94, 67, 255, 0.2);
}

/* Process Stepper (alt version) */
.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.process-step {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 16px;
    min-width: 0;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 34px 26px;
    box-shadow: var(--shadow-sm);
    transition: 0.35s ease;
    text-align: center;
}

.step-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--white);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    width: fit-content;
    margin: 0 auto 22px;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(94, 67, 255, 0.22);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(148, 163, 184, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.28);
    font-size: 1.75rem;
    margin: 0 auto 18px;
}

.step-emoji {
    line-height: 1;
    transform: translateY(1px);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
    text-align: center;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* FAQ Style */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
}

.faq-content {
    padding: 0 32px 24px;
    display: none;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Form Style */
.contact-bg {
    background: var(--white);
    border-top: none;
}

/* FAQ ↔ Contact 섹션 사이 구분선 제거(안전장치) */
#faq.section,
#contact.section {
    border-top: none;
    border-bottom: none;
}

.form-card {
    background: var(--white);
    border-radius: 40px;
    padding: clamp(40px, 8vw, 80px);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    font-size: 1rem;
}

.form-header {
    margin-bottom: 30px;
}

.form-tabs {
    display: flex;
    background: #F3F4F6;
    padding: 6px;
    border-radius: 16px;
    margin-bottom: 40px;
    gap: 4px;
}

.tab-btn {
    flex: 1;
    padding: 14px;
    background: none;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
}

.tab-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 28px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.form-group label .required {
    color: #EF4444; /* Red color for requirement asterisk */
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #F9FAFB;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1.45;
}

.form-group input:not([type="file"]),
.form-group select,
.form-group textarea {
    min-height: 54px;
}

.form-group textarea {
    resize: vertical;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-decoration: none;
    font-size: 1.15rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.submit-btn {
    display: block;
    margin: 30px auto 0;
}

.btn-outline {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ====================== */
/*        Footer          */
/* ====================== */
.footer {
    background: #111827;
    /* Dark background as requested in image */
    color: #94A3B8;
    padding: 40px 0 30px;
    text-align: center;
}

.footer-top-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.footer-top-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-top-links .divider {
    color: #475569;
}

.footer-company-name {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-details {
    font-size: 0.85rem;
    line-height: 1.9;
}

.footer-details p {
    margin-bottom: 6px;
}

.footer-notice-box {
    background: #1E293B;
    /* Slightly lighter dark box */
    border-radius: 16px;
    padding: 16px 24px;
    max-width: 800px;
    margin: 24px auto;
    font-size: 0.85rem;
    line-height: 1.9;
    color: #94A3B8;
    text-align: left;
}

.footer-notice-box p {
    margin-bottom: 12px;
}

.footer-notice-box p:last-child {
    margin-bottom: 0;
}

.footer-compliance {
    color: #CBD5E1;
    font-weight: 700;
    margin-top: 12px;
}

.footer-copy {
    margin-top: 24px;
    font-size: 0.8rem;
    color: #475569;
}

/* ====================== */
/*     Media Queries      */
/* ====================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    /* law 섹션 카드: 화면 줄면 1개씩 차례대로(2열 금지) */
    #law .card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .navbar {
        height: 72px;
    }

    .nav-brand {
        font-size: 1.2rem;
        letter-spacing: -0.5px;
    }

    .section {
        padding: 80px 0;
    }

    .hero-section {
        padding: 84px 0;
    }

    .hero-text h1 {
        letter-spacing: -1px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: min(360px, 100%);
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 18px;
    }

    .form-card {
        border-radius: 28px;
    }

    .form-tabs {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .footer-notice-box {
        padding: 20px;
        margin: 30px 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .step-card {
        padding: 30px 22px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.65rem;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coverage-card {
        padding: 40px 28px;
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-text p {
        letter-spacing: -0.25px;
    }

    .icon-card {
        border-radius: 24px;
    }

    .icon-card h3,
    .process-card h3 {
        font-size: 1.25rem;
    }

    .modern-table th,
    .modern-table td {
        padding: 14px 12px;
        font-size: 0.95rem;
    }

    .faq-trigger {
        padding: 20px 20px;
        font-size: 1.05rem;
    }

    .faq-content {
        padding: 0 20px 20px;
    }

    .form-card {
        padding: 28px 18px;
    }

    .tab-btn {
        font-size: 1rem;
        padding: 12px 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 14px;
        font-size: 1rem;
    }

    .form-group input:not([type="file"]),
    .form-group select {
        min-height: 52px;
    }

    .form-group textarea {
        min-height: 52px;
    }

    .card-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .icon-card {
        padding: 40px 24px;
    }
}

/* ====================== */
/*        Modals          */
/* ====================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.modal-container {
    background: var(--white);
    width: 95%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: normal;
    line-height: 1.75;
}

.modal-rich .modal-section + .modal-section {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(229, 231, 235, 0.7);
}

.modal-rich h4 {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.4px;
    margin-bottom: 8px;
}

.modal-rich p {
    margin: 0;
}

.modal-rich p + p {
    margin-top: 10px;
}

.modal-subtitle {
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: 800;
    color: var(--text-dark);
}

.modal-note {
    color: var(--text-muted);
}

/* 작은 점(·) 기호로 같은 라인 정렬 */
.dot-list {
    list-style: none;
    padding-left: 0;
    margin: 6px 0 0;
    display: grid;
    gap: 6px;
}

.dot-list li {
    position: relative;
    padding-left: 0.95em;
    line-height: 1.75;
}

.dot-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0.05em;
    color: rgba(75, 85, 99, 0.9);
    font-weight: 900;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
}

.btn-close-modal {
    padding: 12px 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-close-modal:hover {
    background: var(--primary-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}