/* ============================================================
   UFUQ Quran LMS - Landing Page
   Modern, visually stunning landing page
   ============================================================ */

/* ----- Landing Navbar ----- */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    padding: 1rem 0;
}

.landing-navbar.scrolled {
    background: linear-gradient(135deg, #0D4A32 0%, #1B6B4A 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    padding: 0.5rem 0;
}

.landing-navbar .navbar-brand {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: var(--transition);
}

.landing-navbar .navbar-brand:hover {
    color: #ffffff;
    transform: scale(1.02);
}

.landing-navbar .navbar-brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.landing-navbar .nav-btns {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-navbar .btn-nav-login {
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 0.45rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.landing-navbar .btn-nav-login:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
    transform: translateY(-1px);
}

.landing-navbar .btn-nav-register {
    background: var(--secondary);
    color: #3d2e00;
    padding: 0.45rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 10px rgba(200, 169, 97, 0.3);
}

.landing-navbar .btn-nav-register:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 97, 0.4);
    color: #3d2e00;
}

/* ----- Hero Section ----- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #071f15 0%, #0a3825 20%, #0D4A32 40%, #1B6B4A 65%, #176040 85%, #0D4A32 100%);
    position: relative;
    overflow: hidden;
    padding: 7rem 1rem 5rem;
}

/* Islamic geometric pattern overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 0L80 40L40 80L0 40z'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Bottom gradient fade */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-body), transparent);
    pointer-events: none;
    z-index: 3;
}

/* Floating decorative shapes */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: particleFloat linear infinite;
}

.hero-particle:nth-child(1) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #C8A961, transparent 70%);
    top: 10%;
    right: -5%;
    animation-duration: 20s;
}

.hero-particle:nth-child(2) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ffffff, transparent 70%);
    bottom: 20%;
    left: 5%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.hero-particle:nth-child(3) {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #C8A961, transparent 70%);
    top: 50%;
    left: 30%;
    animation-duration: 18s;
    animation-delay: -8s;
}

.hero-particle:nth-child(4) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ffffff, transparent 70%);
    top: -5%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: -3s;
}

.hero-particle:nth-child(5) {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #C8A961, transparent 70%);
    bottom: 10%;
    right: 20%;
    animation-duration: 28s;
    animation-delay: -10s;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, -80px) scale(0.9); }
    75% { transform: translate(40px, -30px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Decorative lines */
.hero-deco-line {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.hero-deco-line-1 {
    top: 15%;
    right: 8%;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C8A961, transparent);
    transform: rotate(-30deg);
}

.hero-deco-line-2 {
    bottom: 25%;
    left: 5%;
    width: 250px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transform: rotate(20deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    animation: heroFadeUp 1s ease-out;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(200, 169, 97, 0.12);
    border: 2px solid rgba(200, 169, 97, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 2.8rem;
    color: var(--secondary-light);
    animation: heroIconPulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(200, 169, 97, 0.1);
}

@keyframes heroIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(200, 169, 97, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(200, 169, 97, 0.2); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 169, 97, 0.15);
    border: 1px solid rgba(200, 169, 97, 0.25);
    color: var(--secondary-light);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    animation: heroFadeUp 1s ease-out 0.2s both;
}

.hero-title {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    animation: heroFadeUp 1s ease-out 0.3s both;
}

.hero-title .text-gold-highlight {
    background: linear-gradient(135deg, #C8A961, #E0CC96, #C8A961);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2.75rem;
    line-height: 1.8;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: heroFadeUp 1s ease-out 0.5s both;
}

.hero-buttons .btn-hero-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #3d2e00;
    padding: 0.85rem 2.75rem;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.05rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(200, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-buttons .btn-hero-primary:hover::before {
    left: 100%;
}

.hero-buttons .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 169, 97, 0.45);
    color: #3d2e00;
}

.hero-buttons .btn-hero-outline {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    padding: 0.85rem 2.75rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-buttons .btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    animation: bounceDown 2.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.8; }
}

/* Trust bar */
.hero-trust {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: heroFadeUp 1s ease-out 0.7s both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-trust-item i {
    color: var(--secondary-light);
    font-size: 1rem;
}

/* ----- Features Section ----- */
.features-section {
    padding: 6rem 0;
    background: var(--bg-body);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title .title-accent {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(27, 107, 74, 0.3);
    border-radius: 16px;
}

.feature-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ----- Stats Section ----- */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #071f15 0%, #0D4A32 40%, #1B6B4A 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.stat-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(200, 169, 97, 0.12);
    border: 1.5px solid rgba(200, 169, 97, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--secondary-light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-number .stat-plus {
    font-size: 1.8rem;
    opacity: 0.7;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
}

/* ----- How It Works Section ----- */
.how-section {
    padding: 6rem 0;
    background: var(--bg-body);
    position: relative;
}

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(27, 107, 74, 0.25);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-card:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 12px 28px rgba(27, 107, 74, 0.35);
}

.step-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Step connector line (desktop) */
@media (min-width: 768px) {
    .step-connector {
        position: relative;
    }

    .step-connector::after {
        content: '';
        position: absolute;
        top: calc(2.5rem + 32px);
        left: -10%;
        right: 50%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        opacity: 0.25;
        z-index: 0;
    }

    .step-connector:first-child::after {
        display: none;
    }
}

/* ----- Testimonials Section ----- */
.testimonials-section {
    padding: 5rem 0;
    background: var(--slate-50);
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: serif;
    line-height: 1;
    color: var(--green-100);
    opacity: 0.6;
}

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

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* ----- CTA Section ----- */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-body);
    text-align: center;
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, #0D4A32 0%, #1B6B4A 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.25rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #3d2e00;
    padding: 0.9rem 3rem;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(200, 169, 97, 0.3);
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 169, 97, 0.45);
    color: #3d2e00;
}

/* ----- Landing Footer ----- */
.landing-footer {
    background: var(--slate-800);
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.landing-footer a {
    color: var(--secondary-light);
    text-decoration: none;
    transition: var(--transition);
}

.landing-footer a:hover {
    color: var(--secondary);
}

.landing-footer .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

/* ----- Scroll Reveal Animations ----- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1rem 4rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .hero-buttons .btn-hero-primary,
    .hero-buttons .btn-hero-outline {
        padding: 0.7rem 2rem;
        font-size: 0.95rem;
    }

    .hero-trust {
        gap: 1rem;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .features-section,
    .how-section,
    .cta-section {
        padding: 4rem 0;
    }

    .stats-section,
    .testimonials-section {
        padding: 3.5rem 0;
    }

    .cta-card {
        padding: 3rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 5rem 1rem 3.5rem;
        min-height: 100svh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .hero-icon {
        width: 68px;
        height: 68px;
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 0.35rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn-hero-primary,
    .hero-buttons .btn-hero-outline {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        border-radius: 14px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-icon-circle {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .cta-card {
        padding: 2.5rem 1.25rem;
        border-radius: var(--radius-lg);
    }

    .cta-card h2 {
        font-size: 1.4rem;
    }

    .btn-cta {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .landing-navbar .nav-btns {
        gap: 0.5rem;
    }

    .landing-navbar .btn-nav-login,
    .landing-navbar .btn-nav-register {
        padding: 0.35rem 0.9rem;
        font-size: 0.82rem;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}
