/* ===== CSS Variables ===== */
:root {
    --primary: #6D5A8A;
    --primary-dark: #5a4a75;
    --primary-light: #8a7aa3;
    --secondary: #E8B4B4;
    --secondary-light: #f0c8c8;
    --accent: #E2D9E8;
    --accent-light: #f0ebf5;
    --text-dark: #2d2438;
    --text-medium: #5a4a6a;
    --text-light: #8a7a9a;
    --white: #ffffff;
    --success: #4CAF50;
    --danger: #ef5350;
    --shadow: 0 4px 20px rgba(109, 90, 138, 0.15);
    --shadow-lg: 0 10px 40px rgba(109, 90, 138, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gowun Dodum', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Stock Ticker ===== */
.stock-ticker {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 48px;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.ticker-item.up {
    color: #90EE90;
}

.ticker-item.down {
    color: #ff8a80;
}

.ticker-item i {
    font-size: 10px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-light) 50%, var(--white) 100%);
    padding: 80px 0 120px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(109, 90, 138, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 180, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(109, 90, 138, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.hero-badge i {
    color: #FFD700;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .sub-title {
    font-size: 36px;
    font-weight: 400;
    color: var(--text-medium);
}

.hero-description {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--primary);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--accent);
}

.hero-cta {
    font-size: 18px;
    padding: 18px 36px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.frame-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--secondary);
    border-radius: var(--radius-lg);
    transform: rotate(3deg);
}

.image-frame img {
    position: relative;
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary);
    font-size: 18px;
}

.floating-card.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* ===== CTA Button ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Gowun Dodum', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(109, 90, 138, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 90, 138, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button i {
    font-size: 18px;
}

.cta-button .btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.cta-large {
    font-size: 20px;
    padding: 20px 48px;
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-desc {
    font-size: 18px;
    color: var(--text-medium);
}

.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== About Section ===== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FF0000;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow);
}

.about-badge i {
    font-size: 18px;
}

.about-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--accent);
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.about-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-list li i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 20px;
    flex-shrink: 0;
}

.about-list li div strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-list li div span {
    font-size: 14px;
    color: var(--text-light);
}

.about-quote {
    position: relative;
    padding: 24px 32px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.about-quote i {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--primary);
    font-size: 24px;
    opacity: 0.3;
}

.about-quote p {
    font-size: 18px;
    color: var(--primary);
    font-style: italic;
    margin-left: 20px;
}

/* ===== Community Section ===== */
.community-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--secondary-light);
}

.feature-text h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.community-section .cta-button {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.community-section .cta-button:hover {
    background: var(--accent-light);
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    margin: 0 auto;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-size: 14px;
    font-weight: 600;
}

.chat-members {
    font-size: 12px;
    opacity: 0.8;
}

.chat-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 280px;
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    position: relative;
}

.message.host {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.member {
    background: var(--accent-light);
    color: var(--text-dark);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.msg-author {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.8;
}

.message p {
    font-size: 13px;
    line-height: 1.5;
}

.msg-time {
    display: block;
    font-size: 10px;
    margin-top: 6px;
    opacity: 0.6;
    text-align: right;
}

/* ===== Benefits Section ===== */
.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--accent-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 32px;
    color: var(--white);
}

.benefit-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 24px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-dark);
}

.cta-features i {
    color: var(--success);
    font-size: 20px;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 48px 0 120px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Fixed Bottom CTA ===== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.fixed-cta-btn {
    width: 100%;
    max-width: 400px;
    font-size: 18px;
    padding: 18px 32px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-stats {
        justify-content: center;
    }

    .image-frame img {
        width: 280px;
        height: 280px;
    }

    .floating-card.card-1 {
        left: 50%;
        transform: translateX(-150%);
    }

    .floating-card.card-2 {
        right: 50%;
        transform: translateX(150%);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .community-image {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title .sub-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .image-frame img {
        width: 220px;
        height: 220px;
    }

    .floating-card {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-title .sub-title {
        font-size: 20px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
    }

    .cta-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .fixed-cta {
        padding: 12px 16px;
    }

    .fixed-cta-btn {
        font-size: 16px;
        padding: 16px 24px;
    }

    .phone-mockup {
        width: 260px;
    }

    .benefit-card {
        padding: 32px 20px;
    }

    .testimonial-card {
        padding: 24px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge {
    animation-delay: 0s;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-description {
    animation-delay: 0.2s;
}

.hero-stats {
    animation-delay: 0.3s;
}

.hero-cta {
    animation-delay: 0.4s;
}

.hero-image {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* ===== Modal Styles ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--accent);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.policy-modal h2 {
    padding: 32px 32px 20px;
    font-size: 28px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 0;
}

.policy-modal h2 i {
    font-size: 32px;
}

.modal-body {
    padding: 24px 32px 40px;
}

.policy-intro {
    font-size: 16px;
    color: var(--text-medium);
    padding: 16px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
    border-left: 4px solid var(--primary);
}

.modal-body h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent);
}

.modal-body h3:first-of-type {
    margin-top: 0;
}

.modal-body p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

.modal-body ul {
    margin: 12px 0;
    padding-left: 24px;
}

.modal-body ul li {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    list-style: none;
}

.modal-body ul li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -16px;
}

.modal-body ul li strong {
    color: var(--text-dark);
}

.policy-date {
    margin-top: 32px !important;
    padding-top: 20px;
    border-top: 1px solid var(--accent);
    font-size: 13px !important;
    color: var(--text-light) !important;
    text-align: right;
}

/* ===== Footer Disclaimer ===== */
.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.footer-disclaimer h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #ffc107;
    margin-bottom: 12px;
}

.footer-disclaimer h4 i {
    font-size: 18px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    text-align: justify;
}

/* ===== Modal Responsive ===== */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        max-height: 85vh;
    }
    
    .policy-modal h2 {
        padding: 24px 24px 16px;
        font-size: 22px;
    }
    
    .policy-modal h2 i {
        font-size: 26px;
    }
    
    .modal-body {
        padding: 20px 24px 32px;
    }
    
    .modal-body h3 {
        font-size: 16px;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .footer-disclaimer {
        padding: 20px;
    }
    
    .footer-disclaimer h4 {
        font-size: 14px;
    }
    
    .footer-disclaimer p {
        font-size: 11px;
    }
}

