/* RevizBAC Custom Styles */
:root {
    --primary-color: #6C63FF;
    --secondary-color: #FF6B6B;
    --success-color: #4ECDC4;
    --warning-color: #FFE66D;
    --danger-color: #FF6B6B;
    --dark-color: #2D3748;
    --light-color: #F7FAFC;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

/* Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Landing Page Styles */
.landing-page {
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.hero-section > .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-copy {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.landing-page .hero-title {
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.landing-page .hero-title .text-gradient {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #ffffff;
    background-clip: initial;
    color: #ffffff;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    opacity: 1;
    max-width: 760px;
}

.hero-stats .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.hero-stats--homepage {
    width: 100%;
}

.stat-item {
    position: relative;
    text-align: center;
    height: 100%;
    min-height: 114px;
    padding: 0.82rem 1rem 0.7rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.13));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 40px rgba(31, 41, 55, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.stat-item > * {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: clamp(2rem, 3.7vw, 2.85rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
    white-space: nowrap;
    color: #ffffff;
    text-shadow: 0 12px 26px rgba(17, 24, 39, 0.18);
    font-variant-numeric: tabular-nums lining-nums;
    margin-bottom: 0;
}

.stat-label {
    font-size: 0.88rem;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.86);
    max-width: none;
    white-space: nowrap;
    margin: 0.42rem auto 0;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-section > .container {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .hero-section > .container > .row {
        flex: 1 1 auto;
        min-height: 0 !important;
        align-content: center;
        align-items: flex-end !important;
        row-gap: 0.55rem;
        transform: translateY(-1rem);
    }

    .hero-content {
        max-width: 640px;
        transform: translateY(-2rem);
    }

    .hero-copy {
        transform: none;
    }

    .hero-buttons {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-buttons .btn {
        width: auto;
        white-space: nowrap;
        margin-right: 0 !important;
    }

    .hero-stats--homepage {
        max-width: none;
        margin-top: 0 !important;
    }

    .hero-stats--homepage .row {
        --bs-gutter-x: 1.25rem;
        --bs-gutter-y: 1rem;
    }

    .hero-stats--homepage .stat-item {
        min-height: 122px;
        padding: 0.86rem 1.05rem 0.74rem;
    }

    .hero-stats--homepage .stat-number {
        font-size: clamp(2.25rem, 3vw, 2.95rem);
        letter-spacing: 0;
    }

    .hero-stats--homepage .stat-label {
        max-width: none;
        font-size: 0.88rem;
    }

    .card-3 {
        bottom: 18%;
        left: 4%;
    }

    .hero-image {
        height: clamp(340px, 41vh, 430px);
    }
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.2rem;
}

.card-1 {
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 20%;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    background: linear-gradient(135deg, #45B7D1, #96CEB4);
    color: white;
    animation-delay: 1s;
}

.card-4 {
    bottom: 10%;
    right: 10%;
    background: linear-gradient(135deg, #96CEB4, #FFEAA7);
    color: var(--dark-color);
    animation-delay: 1.5s;
}

.card-5 {
    top: 2%;
    left: 46%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7f7fd5, #86a8e7);
    color: white;
    animation-delay: 0.25s;
}

.card-6 {
    top: 50%;
    right: 2%;
    background: linear-gradient(135deg, #8e54e9, #4776e6);
    color: white;
    animation-delay: 1.1s;
}

.card-7 {
    bottom: 2%;
    left: 10%;
    background: linear-gradient(135deg, #f6d365, #fda085);
    color: var(--dark-color);
    animation-delay: 1.8s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    z-index: 1;
}

.mockup-screen {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    height: 100%;
}

.mockup-header {
    background: #f8f9fa;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e9ecef;
}

.mockup-dots {
    display: flex;
    gap: 5px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }

.mockup-title {
    font-size: 12px;
    color: var(--dark-color);
    font-weight: 600;
}

.mockup-content {
    padding: 20px;
    text-align: center;
}

.progress-ring {
    display: inline-block;
    margin-bottom: 10px;
}

.progress-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 85%, #e9ecef 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
}

.progress-text {
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
}

.mockup-subtitle {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Features Section */
.features-section {
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f1f1;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand .brand-description {
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link-x-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: currentColor;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    opacity: 0.6;
    margin-bottom: 0;
}

.footer-credit-copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.55;
    opacity: 0.96;
}

.footer-credit-link {
    color: #a5b4fc;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.95;
}

.footer-credit-link:hover {
    color: #c4b5fd;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-image {
        height: auto;
        min-height: 0;
        margin-top: 2.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .floating-cards {
        position: relative;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.85rem;
    }

    .floating-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
    }

    .hero-mockup {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: min(300px, 92%);
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image {
        margin-top: 2.25rem;
    }

    .hero-stats {
        max-width: 100%;
    }

    .hero-stats .row {
        --bs-gutter-x: 0.85rem;
        --bs-gutter-y: 0.85rem;
    }

    .stat-item {
        min-height: 104px;
        padding: 0.76rem 0.85rem 0.66rem;
        border-radius: 18px;
    }

    .stat-number {
        font-size: clamp(1.85rem, 6.4vw, 2.5rem);
    }

    .stat-label {
        font-size: 0.79rem;
        max-width: none;
        margin-top: 0.38rem;
    }
    
    .floating-card {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-links {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
}

.auth-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.auth-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.auth-header h2 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.auth-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.auth-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-auth {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.auth-footer {
    text-align: center;
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #f1f1f1;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-container {
    background: #f8f9fa;
    min-height: 100vh;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
}

.dashboard-header {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    margin-bottom: 2rem;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.welcome-subtitle {
    color: #666;
    margin-bottom: 0;
}

.stats-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stats-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: white;
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.subject-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.subject-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: inherit;
    text-decoration: none;
}

.subject-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.subject-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.subject-progress {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.progress {
    height: 6px;
    border-radius: 3px;
    background: #f1f1f1;
}

.progress-bar {
    border-radius: 3px;
}

/* Quiz Styles */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

.quiz-header {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.quiz-question {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    margin-bottom: 2rem;
}

.question-number {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.question-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.answer-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.answer-option:hover {
    border-color: var(--primary-color);
    background: rgba(108, 99, 255, 0.05);
}

.answer-option.selected {
    border-color: var(--primary-color);
    background: rgba(108, 99, 255, 0.1);
}

.answer-option.correct {
    border-color: var(--success-color);
    background: rgba(78, 205, 196, 0.1);
}

.answer-option.incorrect {
    border-color: var(--danger-color);
    background: rgba(255, 107, 107, 0.1);
}

.option-letter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
    font-weight: 500;
}

.quiz-controls {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-timer {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero-stats .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }

    .stat-item {
        min-height: 94px;
        padding: 0.68rem 0.75rem 0.58rem;
        border-radius: 16px;
    }

    .stat-number {
        font-size: clamp(1.72rem, 7.4vw, 2.15rem);
    }

    .stat-label {
        font-size: 0.73rem;
        line-height: 1.3;
        max-width: none;
    }
    
    .auth-card {
        margin: 1rem;
    }
    
    .quiz-question {
        padding: 1.5rem;
    }
    
    .answer-option {
        padding: 0.75rem 1rem;
    }
    
    .quiz-controls {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-copy {
        padding-top: clamp(1.4rem, 6vw, 2.1rem);
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 1.12;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-badge {
        font-size: 0.76rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-buttons .btn {
        font-size: 0.95rem;
    }

    .floating-card {
        padding: 0.75rem 0.95rem;
        gap: 0.55rem;
        font-size: 0.85rem;
    }

    .floating-card i {
        font-size: 1rem;
    }

    .welcome-title {
        font-size: 1.75rem;
    }

    .welcome-subtitle,
    .subject-progress,
    .stats-label {
        font-size: 0.88rem;
    }

    .subject-title {
        font-size: 1rem;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .question-text {
        font-size: 1.08rem;
        line-height: 1.55;
    }

    .option-text {
        font-size: 0.94rem;
    }

    .landing-page .hero-title {
        font-size: clamp(1.82rem, 8.8vw, 2.35rem);
    }

    .landing-page .hero-description {
        font-size: 0.94rem;
        line-height: 1.58;
    }

    .landing-page .hero-buttons .btn {
        font-size: 0.91rem;
    }

    .landing-page .floating-card {
        font-size: 0.78rem;
    }

    .landing-page .mockup-title,
    .landing-page .mockup-subtitle {
        font-size: 0.72rem;
    }

    .landing-page .progress-text {
        font-size: 0.82rem;
    }

    .landing-page .stat-number {
        font-size: clamp(1.6rem, 7vw, 1.95rem);
    }

    .landing-page .stat-label {
        font-size: 0.72rem;
        line-height: 1.28;
    }

    .landing-page .section-title,
    .landing-page .cta-title {
        font-size: 1.72rem;
    }

    .landing-page .section-subtitle,
    .landing-page .cta-description {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .landing-page .feature-title {
        font-size: 1.08rem;
    }

    .landing-page .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .landing-page .footer-brand .brand-name {
        font-size: 1.22rem;
    }

    .landing-page .footer-brand .brand-description,
    .landing-page .footer-link,
    .landing-page .footer-copyright {
        font-size: 0.9rem;
    }

    .landing-page .footer-credit-copy {
        font-size: 0.79rem;
    }

    .landing-page .social-link {
        width: 38px;
        height: 38px;
    }
}
