/* facelancer_project\static\css\download_app.css */

/* Brand Color Variables */
:root {
    /* Primary Brand Colors */
    --brand-primary: #0094FF;
    --brand-cyan: #25D9F8;
    --brand-dark: #03161A;
    --brand-surface: #062126;
    --brand-white: #FFFFFF;
    
    /* Brand Gradient */
    --brand-gradient: linear-gradient(135deg, #0094FF 0%, #0EC6F1 100%);
    --brand-gradient-reverse: linear-gradient(135deg, #0EC6F1 0%, #0094FF 100%);
    
    /* Text Colors */
    --text-primary: var(--brand-white);
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    
    /* Font Family */
    --font-primary: 'Tajawal', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.brand-theme {
    font-family: var(--font-primary);
    background-color: var(--brand-dark);
    color: var(--text-primary);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    margin: 0;
}

/* ========== HERO SECTION STYLES ========== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 100px; /* Increased from 60px to accommodate scroll indicator */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-gradient);
    opacity: 0.15;
}

/* Particles Animation */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--brand-cyan);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    opacity: 0.1;
    animation-delay: 0s;
}

.particle-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 15%;
    opacity: 0.05;
    animation-delay: 3s;
}

.particle-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 25%;
    opacity: 0.08;
    animation-delay: 6s;
}

.particle-4 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    right: 30%;
    opacity: 0.06;
    animation-delay: 9s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.1;
    }
}

/* Lightning Effect */
.lightning-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(37, 217, 248, 0.08) 50%, transparent 70%);
    animation: lightningFlash 10s infinite;
}

@keyframes lightningFlash {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    10%, 90% {
        opacity: 0;
    }
    50% {
        opacity: 0.2;
        transform: translateX(100%);
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px; /* Reduced padding */
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(0, 148, 255, 0.3));
    animation: pulseLogo 2s infinite;
}

@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 5px 15px rgba(0, 148, 255, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 5px 20px rgba(0, 148, 255, 0.5));
    }
}

.hero-headline {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text {
    color: var(--brand-white);
}

.brand-name {
    color: var(--brand-cyan);
    text-shadow: 0 0 20px rgba(37, 217, 248, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-cyan);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.brand-cyan {
    color: var(--brand-cyan) !important;
}

.brand-primary {
    color: var(--brand-primary) !important;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    min-width: 200px;
    justify-content: center;
}

.hero-btn::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;
}

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

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--brand-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 148, 255, 0.4);
    color: var(--brand-white);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-white);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
}

.store-icon {
    height: 24px;
    width: auto;
}

.hero-btn small {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* Hero Trust Badges */
.hero-trust {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px; /* Increased from 60px to add more space before scroll indicator */
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge i {
    font-size: 1rem;
}

.trust-badge span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Scroll Indicator - FIXED POSITION */
.scroll-indicator {
    position: absolute; /* Changed from absolute to fixed */
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1000; /* Higher z-index to be above everything */
    width: 100%;
    pointer-events: none; /* Allow clicks to pass through when not hovering */
}

.scroll-link {
    pointer-events: auto; /* Re-enable pointer events for the link */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: var(--brand-cyan);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.scroll-link:hover {
    background: rgba(37, 217, 248, 0.2);
    transform: translateY(-2px) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========== MAIN CONTENT STYLES ========== */
.main-content {
    background: var(--brand-dark);
    padding: 0;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-white);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.feature-card {
    background: var(--brand-surface);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    text-align: right;
}

.feature-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--brand-white);
    text-align: right;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: right;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: right;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-right: 20px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    color: var(--brand-cyan);
    position: absolute;
    right: 0;
}

.platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.platform-badge {
    background: rgba(37, 217, 248, 0.1);
    color: var(--brand-cyan);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(37, 217, 248, 0.3);
}

.feature-badge {
    display: inline-flex;
    margin-top: 15px;
}

.badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-feature-card {
    border: 1px solid rgba(37, 217, 248, 0.3);
    background: linear-gradient(135deg, rgba(6, 33, 38, 0.9), rgba(3, 22, 26, 0.9));
}

.ai-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 217, 248, 0.1) 1%, transparent 1%);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: float 20s linear infinite;
}

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

/* Steps Section */
.steps-section {
    background: rgba(6, 33, 38, 0.5);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.step-card {
    background: var(--brand-surface);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.step-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--brand-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--brand-white);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--brand-surface);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    text-align: right;
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.rating {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: right;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    text-align: right;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.author-info {
    flex: 1;
    text-align: right;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--brand-white);
}

.author-role {
    font-size: 0.9rem;
    color: var(--brand-cyan);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, rgba(0, 148, 255, 0.1), rgba(37, 217, 248, 0.1));
}

.cta-card {
    background: var(--brand-surface);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-white);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    text-align: right;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.benefit-item i {
    color: var(--brand-cyan);
}

.price-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.free-period, .monthly-price {
    text-align: center;
}

.free-period h3, .monthly-price h3 {
    font-size: 1.3rem;
    color: var(--brand-white);
    margin-bottom: 10px;
}

.free-period p, .monthly-price p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.then {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 20px 0;
    font-weight: 600;
}

.download-cta {
    margin-top: 40px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: right;
    justify-content: flex-start;
}

.download-btn i {
    font-size: 1.5rem;
}

.download-btn img {
    height: 24px;
    width: auto;
}

.btn-content {
    flex: 1;
    text-align: right;
}

.btn-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-white);
}

.btn-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 3px;
}

.primary-btn {
    background: var(--brand-gradient);
    color: var(--brand-white);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 148, 255, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-white);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.ios-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
}

.ios-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
}

.coming-soon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    cursor: not-allowed;
}

.trust-message {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-message p {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--brand-surface);
    margin: 10% auto;
    padding: 40px;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: modalSlideIn 0.3s ease;
    text-align: right;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-cyan);
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--brand-white);
}

.modal-text {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.form-group {
    margin: 25px 0;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-white);
    font-size: 1rem;
    font-family: var(--font-primary);
    text-align: right;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-cyan);
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    font-family: var(--font-primary);
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--brand-white);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }
    
    .hero-btn {
        justify-content: center;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    /* Adjust hero section for mobile */
    .hero-section {
        padding-top: 40px;
        padding-bottom: 100px; /* Consistent spacing */
    }
    
    .hero-trust {
        margin-bottom: 60px; /* Adjust for mobile */
    }
    
    .scroll-indicator {
        bottom: 40px; /* More visible on mobile */
    }
    
    .scroll-link {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card,
    .step-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .hero-btn {
        min-width: auto;
        width: 100%;
    }
    
    .hero-trust {
        margin-bottom: 50px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-link {
        width: 40px;
        height: 40px;
    }
}