/* ============================================
   EnteRoot Landing Page v4.0 — Cinematic Redesign
   ============================================ */

/* --- Utility --- */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-green) 0%, #4ade80 30%, var(--accent-blue) 60%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


/* ============================================
   HERO CINEMATIC
   ============================================ */
.hero-cinematic {
    text-align: center;
    padding: 80px 0 40px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-cinematic__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

/* Badge with pulse */
.hero-cinematic__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-green);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 40px;
    animation: fadeUp 0.6s ease 0.2s backwards;
    position: relative;
}

.hero-badge__pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Title */
.hero-cinematic__title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease 0.3s backwards;
}

.hero-cinematic__title-glow {
    background: linear-gradient(135deg, var(--accent-green) 0%, #4ade80 40%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 6s ease infinite;
    filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.3));
}

/* Quote */
.hero-cinematic__quote {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 16px;
    animation: fadeUp 0.7s ease 0.4s backwards;
    position: relative;
    padding: 0 24px;
}

.hero-quote-icon {
    color: var(--accent-green);
    opacity: 0.5;
    font-size: 0.85rem;
    margin-right: 6px;
}

/* Subtitle / Typewriter */
.hero-cinematic__subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 500px;
    margin-bottom: 44px;
    animation: fadeUp 0.6s ease 0.5s backwards;
    min-height: 1.6em;
}

/* Action Buttons */
.hero-cinematic__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeUp 0.6s ease 0.6s backwards;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeUp 0.6s ease 1s backwards;
    cursor: pointer;
}

.hero-scroll-arrow {
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.hero-scroll-indicator:hover {
    color: var(--accent-green);
}


/* ============================================
   GLOBE SECTION
   ============================================ */
.globe-section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.globe-section__text {
    text-align: center;
    margin-bottom: 48px;
}

.globe-section__heading {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.globe-section__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.globe-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: grab;
}

.globe-wrapper:active {
    cursor: grabbing;
}

#globeCanvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.globe-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, rgba(59, 130, 246, 0.06) 40%, transparent 70%);
    pointer-events: none;
    animation: globePulse 4s ease-in-out infinite;
}

@keyframes globePulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Floating stat pills */
.globe-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.globe-stat-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.globe-stat-pill:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 197, 94, 0.08);
}

.globe-stat-pill i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.globe-stat-pill--2 i { color: var(--accent-blue); }
.globe-stat-pill--3 i { color: var(--accent-purple); }

.globe-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.globe-stat-number::after {
    content: '+';
    font-size: 0.7em;
    color: var(--accent-green);
    font-weight: 600;
}

.globe-stat-pill--2 .globe-stat-number::after { color: var(--accent-blue); }
.globe-stat-pill--3 .globe-stat-number::after { color: var(--accent-purple); }

.globe-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}


/* ============================================
   FEATURES V2
   ============================================ */
.features-v2 {
    padding: 80px 0;
    text-align: center;
}

.features-v2__heading {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.features-v2__sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 56px;
}

.features-v2__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card-v2 {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    will-change: transform;
    transform-style: preserve-3d;
}

.feature-card-v2:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(34, 197, 94, 0.06);
}

/* Card inner glow */
.feature-card-v2__glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card-v2:hover .feature-card-v2__glow {
    opacity: 1;
}

.feature-card-v2__glow--green { background: radial-gradient(circle, rgba(34, 197, 94, 0.15), transparent 70%); }
.feature-card-v2__glow--blue { background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%); }
.feature-card-v2__glow--purple { background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%); }
.feature-card-v2__glow--orange { background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent 70%); }

/* Top gradient line */
.feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-card-v2:hover::before { opacity: 1; }

.feature-card-v2__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-v2:hover .feature-card-v2__icon {
    transform: scale(1.12) rotate(-3deg);
}

.feature-card-v2__icon--green {
    background: var(--accent-green-glow);
    color: var(--accent-green);
    border: 1px solid rgba(34, 197, 94, 0.15);
}
.feature-card-v2:hover .feature-card-v2__icon--green { box-shadow: 0 0 24px rgba(34, 197, 94, 0.25); }

.feature-card-v2__icon--blue {
    background: var(--accent-blue-glow);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.15);
}
.feature-card-v2:hover .feature-card-v2__icon--blue { box-shadow: 0 0 24px rgba(59, 130, 246, 0.25); }

.feature-card-v2__icon--purple {
    background: var(--accent-purple-glow);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.15);
}
.feature-card-v2:hover .feature-card-v2__icon--purple { box-shadow: 0 0 24px rgba(139, 92, 246, 0.25); }

.feature-card-v2__icon--orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.15);
}
.feature-card-v2:hover .feature-card-v2__icon--orange { box-shadow: 0 0 24px rgba(245, 158, 11, 0.25); }

.feature-card-v2 h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card-v2 p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.feature-card-v2__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}


/* ============================================
   JOURNEY / HOW IT WORKS
   ============================================ */
.journey-section {
    padding: 80px 0;
    text-align: center;
}

.journey-section__heading {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 56px;
}

.journey-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.journey-step {
    flex: 0 1 280px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 28px 32px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 20px rgba(34, 197, 94, 0.06);
}

.journey-step__number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
}

.journey-step__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    background: var(--accent-green-glow);
    color: var(--accent-green);
    border: 1px solid rgba(34, 197, 94, 0.15);
    transition: transform 0.3s ease;
}

.journey-step:hover .journey-step__icon {
    transform: scale(1.12);
}

.journey-step__icon--blue {
    background: var(--accent-blue-glow);
    color: var(--accent-blue);
    border-color: rgba(59, 130, 246, 0.15);
}

.journey-step__icon--purple {
    background: var(--accent-purple-glow);
    color: var(--accent-purple);
    border-color: rgba(139, 92, 246, 0.15);
}

.journey-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.journey-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.journey-connector {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

.journey-connector__line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    border-radius: 2px;
    opacity: 0.3;
}


/* ============================================
   CREATOR SECTION
   ============================================ */
.creator-section {
    padding: 0 0 40px;
}

.creator-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.creator-box__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(59, 130, 246, 0.06) 50%, rgba(139, 92, 246, 0.06) 100%);
    z-index: 0;
}

.creator-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue), var(--accent-purple), var(--accent-green));
    background-size: 300% 100%;
    animation: gradientSlide 4s linear infinite;
    z-index: 2;
}

.creator-box__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 56px 40px;
}

.creator-box__icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.creator-box__content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.creator-box__content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.creator-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.creator-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.creator-step__num {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.creator-step__arrow {
    color: var(--text-muted);
    font-size: 0.75rem;
}


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 40px 0 80px;
}

.final-cta__box {
    text-align: center;
    padding: 72px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.final-cta__box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue), var(--accent-purple), var(--accent-green));
    background-size: 300% 100%;
    animation: gradientSlide 4s linear infinite;
}

.final-cta__box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.final-cta__box p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-v2__grid { grid-template-columns: repeat(2, 1fr); }
    .hero-cinematic__title { font-size: 3.5rem; }
    .globe-wrapper { width: 340px; height: 340px; }
}

@media (max-width: 768px) {
    .hero-cinematic { padding: 50px 0 30px; min-height: 80vh; }
    .hero-cinematic__title { font-size: 2.6rem; }
    .hero-cinematic__quote { font-size: 1rem; }
    .hero-cinematic__subtitle { font-size: 0.95rem; }

    .features-v2__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .globe-wrapper { width: 280px; height: 280px; }
    .globe-section__heading { font-size: 2rem; }

    .globe-stats { flex-direction: column; align-items: center; }

    .journey-timeline { flex-direction: column; gap: 20px; }
    .journey-connector { width: auto; height: 30px; }
    .journey-connector__line { width: 2px; height: 100%; }
    .journey-step { flex: none; width: 100%; max-width: 380px; }

    .hero-cinematic__actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-cinematic__actions .btn { width: 100%; max-width: 320px; }

    .landing-header__nav-link { display: none; }

    .creator-box__content { padding: 40px 24px; }
    .final-cta__box { padding: 48px 24px; }
    .final-cta__box h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero-cinematic__title { font-size: 2.1rem; }
    .hero-cinematic__quote { font-size: 0.9rem; padding: 0 8px; }
    .globe-wrapper { width: 240px; height: 240px; }
    .features-v2__heading { font-size: 1.8rem; }
    .journey-section__heading { font-size: 1.8rem; }
    .globe-section__heading { font-size: 1.7rem; }
    .feature-card-v2 { padding: 28px 20px 24px; }
}


/* ============================================
   TERMS MODAL — Premium Legal Document Style
   ============================================ */
.terms-modal {
    max-width: 720px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Header */
.terms-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.04), rgba(59, 130, 246, 0.03));
}

.terms-header__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-green-glow);
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-green);
    flex-shrink: 0;
}

.terms-header__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    border: none !important;
    padding: 0 !important;
}

.terms-header__sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Scrollable Body */
.terms-body {
    max-height: 52vh;
    overflow-y: auto;
    padding: 24px 32px;
}

.terms-body::-webkit-scrollbar { width: 5px; }
.terms-body::-webkit-scrollbar-track { background: transparent; }
.terms-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

/* Section */
.terms-section {
    display: flex;
    gap: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.terms-section--danger {
    border-color: rgba(239, 68, 68, 0.15);
    background: rgba(239, 68, 68, 0.03);
}

.terms-section--danger:hover {
    border-color: rgba(239, 68, 68, 0.25);
    background: rgba(239, 68, 68, 0.05);
}

/* Section Number */
.terms-section__num {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(34, 197, 94, 0.2);
    min-width: 36px;
    flex-shrink: 0;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.terms-section__num--danger {
    color: rgba(239, 68, 68, 0.3);
}

/* Section Content */
.terms-section__content {
    flex: 1;
    min-width: 0;
}

.terms-section__content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-section__content h3 i {
    color: var(--accent-green);
    font-size: 0.9rem;
}

.terms-section--danger .terms-section__content h3 i {
    color: var(--accent-red);
}

.terms-section__content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.terms-section__content p:last-child {
    margin-bottom: 0;
}

/* Alert Boxes */
.terms-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-top: 12px;
}

.terms-alert i {
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.terms-alert span {
    flex: 1;
}

.terms-alert--red {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.terms-alert--red i {
    color: var(--accent-red);
}

.terms-alert--yellow {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

.terms-alert--yellow i {
    color: var(--accent-yellow);
}

/* Footer */
.terms-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(0, 0, 0, 0.15);
}

.terms-footer__note {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.terms-footer__note i {
    color: var(--accent-blue);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-header { padding: 20px; }
    .terms-body { padding: 16px; }
    .terms-section { flex-direction: column; gap: 8px; padding: 16px; }
    .terms-section__num { font-size: 1rem; min-width: auto; }
    .terms-footer { flex-direction: column; padding: 16px; text-align: center; }
    .terms-footer .btn { width: 100%; }
    .terms-modal { max-width: 96% !important; }
}
