/* ========== HERO ========== */
.hero-simple {
    background: linear-gradient(135deg, #f9e7df 0%, #f1dcd3 50%, #e8cfc5 100%);
    padding: 100px 0 80px;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-simple::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-simple h1 {
    font-family: "Red Hat Text", sans-serif !important;
    font-weight: 600 !important;
    font-size: 2.8rem !important;
    letter-spacing: -0.02em;
}

/* ========== CARDS ========== */
.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}
.info-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hero-section {
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* ========== ADVANTAGE CARDS ========== */
.advantage-card {
    border-radius: 16px !important;
    padding: 40px 30px !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
}
.advantage-card i {
    font-size: 2.5rem;
    color: #c9956b;
    background: linear-gradient(135deg, #f9e7df, #f1dcd3);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    display: inline-block;
}
.advantage-card h5 {
    font-weight: 600;
    margin-top: 16px;
    font-size: 1.15rem;
}
.advantage-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== DISCOVER INFO ========== */
#info-section .card-body h2 {
    font-family: "Red Hat Text", sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2d2d2d;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1dcd3;
}
#info-section .card-body h3 {
    font-family: "Red Hat Text", sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 600;
    color: #444;
    margin-top: 1.5rem;
}
#info-section .card-body h4 {
    font-family: "Red Hat Text", sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    color: #555;
}
#info-section .card-body p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}
#info-section .card-body ul {
    padding-left: 0;
    list-style: none;
}
#info-section .card-body ul li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    line-height: 1.7;
}
#info-section .card-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #c9956b;
}

/* ========== TERMS TOC ========== */
.terms-toc {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.terms-toc h5 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
    color: #333;
}
.terms-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.terms-toc ul li {
    margin-bottom: 0;
}
.terms-toc ul li a {
    display: block;
    padding: 8px 12px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.terms-toc ul li a:hover,
.terms-toc ul li a.active {
    background: #f9e7df;
    color: #333;
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== MODERN BUTTONS ========== */
.btn-modern {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}
.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ========== STAT COUNTER ========== */
.stat-section {
    background: #fff;
    padding: 60px 0;
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}
.stat-item .stat-label {
    color: #888;
    font-size: 0.95rem;
    margin-top: 8px;
}

/* ========== CTA SECTION ========== */
.cta-modern {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    border-radius: 24px;
    margin: 40px auto;
    max-width: 1100px;
}
.cta-modern h2 {
    font-family: "Red Hat Text", sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 600;
    color: #fff;
}
.cta-modern p {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
