/* MENUCARTA - STATIC LANDING PAGE STYLES */

/* 1. CSS CUSTOM PROPERTIES */
:root {
    --color-primary: #15a355;
    --color-primary-light: #C1F5DD;
    --color-primary-dark: #0d7a3f;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F9FA;
    --color-surface: #FFFFFF;
    --color-surface-alt: #F1F3F5;
    --color-text: #131010;
    --color-text-muted: #6B7280;
    --color-border: #E5E7EB;
    --shadow-sm: none;
    --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 4px 8px rgba(0, 0, 0, 0.06);
    --font-family: 'Inter', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --container-max: 1200px;
    --header-height: 72px;
}

[data-theme="dark"] {
    --color-bg: #181A1F;
    --color-bg-alt: #1E2025;
    --color-surface: #141218;
    --color-surface-alt: #1C1B1F;
    --color-text: #FFFFFF;
    --color-text-muted: #9CA3AF;
    --color-border: #374151;
    --color-icon: #E5E7EB;
    --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* 2. BASE STYLES */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    transition: background var(--transition-normal), color var(--transition-normal);
}

[dir="rtl"] {
    text-align: right;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* 3. UTILITIES */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* 4. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 2rem;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-surface-alt);
    color: var(--color-primary-dark);
    border-color: var(--color-primary);
}

.btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
}

/* 5. HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.header.scrolled {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background: var(--color-surface-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    cursor: pointer;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 100;
    overflow: hidden;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: var(--color-text);
    transition: background var(--transition-fast);
}

.lang-option:hover {
    background: var(--color-surface-alt);
    color: var(--color-primary);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    background: var(--color-surface-alt);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.theme-toggle:hover {
    background: var(--color-border);
}

.theme-toggle svg,
.theme-toggle i {
    width: 20px;
    height: 20px;
    fill: var(--color-text);
    stroke: var(--color-text);
    color: var(--color-text);
    font-size: 1.25rem;
}

.theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    padding: 2rem;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

/* 6. HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--color-primary-light) 0%, transparent 70%);
    opacity: 0.3;
}

[data-theme="dark"] .hero::before {
    opacity: 0.1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .hero-badge {
    background: rgba(21, 163, 85, 0.2);
    color: var(--color-primary);
}

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

.hero-title .highlight {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-mockup img {
    max-width: 100%;
    filter: drop-shadow(var(--shadow-xl));
}

/* 7. FREE TRIAL BANNER */
.free-trial {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1ec76a 50%, var(--color-primary-light) 100%);
    padding: 3rem 0;
}

.free-trial-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.free-trial-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.free-trial-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.free-trial-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.free-trial-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* 8. FEATURES */
.features {
    background: var(--color-bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(90deg, rgba(193, 245, 221, 0.2), rgba(21, 163, 85, 0.15));
    border-radius: var(--radius-xl);
    padding: 2px;
    border: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card-inner {
    background: var(--color-surface);
    border-radius: calc(var(--radius-xl) - 2px);
    padding: 2rem;
    height: 100%;
}

[data-theme="dark"] .feature-card {
    background: linear-gradient(90deg, rgba(21, 163, 85, 0.15), rgba(21, 163, 85, 0.08));
}

.feature-card:hover {
    background: linear-gradient(90deg, rgba(193, 245, 221, 0.35), rgba(21, 163, 85, 0.25));
}

[data-theme="dark"] .feature-card:hover {
    background: linear-gradient(90deg, rgba(21, 163, 85, 0.25), rgba(21, 163, 85, 0.15));
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--color-primary);
}

[data-theme="dark"] .feature-icon {
    background: linear-gradient(135deg, rgba(21, 163, 85, 0.3) 0%, var(--color-primary) 100%);
}

[data-theme="dark"] .feature-icon i {
    color: #fff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* 9. PLATFORMS */
.platforms {
    text-align: center;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.platform-badge:hover {
    border-color: var(--color-primary);
    background: var(--color-surface-alt);
}

.platform-badge img {
    height: 40px;
}

.platform-badge i {
    font-size: 2.5rem;
    color: var(--color-text);
}

.platform-badge-text {
    text-align: left;
}

.platform-badge-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.platform-badge-name {
    font-size: 1.125rem;
    font-weight: 600;
}

/* 10. DEMO */
.demo {
    background: var(--color-bg-alt);
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.demo-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.demo-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--color-primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.demo-feature-icon i {
    font-size: 1rem;
    color: var(--color-primary);
}

[data-theme="dark"] .demo-feature-icon {
    background: rgba(21, 163, 85, 0.2);
}

.demo-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.demo-phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: var(--color-surface);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 8px solid var(--color-text);
}

[data-theme="dark"] .demo-phone {
    border-color: #333;
}

.demo-phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    border-radius: 28px;
    overflow: hidden;
}

.demo-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-qr {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: white;
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.demo-qr img {
    width: 100%;
    height: 100%;
}

/* 11. WORLD MAP */
.world-map-section {
    padding: 5rem 0;
}

.world-map-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.world-map-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.world-map-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.world-map {
    position: relative;
    margin: 0 auto 2rem;
    max-width: 800px;
}

.world-map-wrapper {
    position: relative;
    width: 100%;
}

.world-map-image {
    width: 100%;
    height: auto;
    fill: #E8E8E8;
    opacity: 0.8;
}

[data-theme="dark"] .world-map-image {
    filter: invert(0.85) hue-rotate(180deg);
    opacity: 0.6;
}

.world-map-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.world-map-svg {
    width: 100%;
    height: auto;
}

/* Continent Styles - Theme Compatible */
.continent {
    fill: #E8E8E8;
    stroke: none;
    transition: fill var(--transition-normal);
}

[data-theme="dark"] .continent {
    fill: #2A2A2A;
}

/* Marker Styles - Positioned Divs */
.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.marker-center {
    display: block;
    width: 12px;
    height: 12px;
    background: #E85A5A;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.marker-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(232, 90, 90, 0.25);
    border-radius: 50%;
    animation: markerPulseDiv 2.5s ease-in-out infinite;
}

@keyframes markerPulseDiv {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.25;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.1;
    }
}

/* Legacy SVG Marker Styles - Red/Pink like reference */
.marker-dot {
    fill: #E85A5A;
}

.marker-pulse {
    fill: #E85A5A;
    opacity: 0.25;
    animation: markerPulse 2.5s ease-in-out infinite;
}

.marker-pulse-outer {
    fill: #E85A5A;
    opacity: 0.1;
    animation: markerPulseOuter 2.5s ease-in-out infinite;
}

@keyframes markerPulse {

    0%,
    100% {
        opacity: 0.25;
        transform-origin: center;
    }

    50% {
        opacity: 0.1;
    }
}

@keyframes markerPulseOuter {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.05;
    }
}

.world-map-locations {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-dot {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.location-name {
    font-weight: 500;
}

/* 12. PRICING */
.pricing {
    background: var(--color-bg-alt);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 2px solid var(--color-border);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--color-primary);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

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

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-period {
    color: var(--color-text-muted);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.pricing-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.pricing-feature-icon i {
    font-size: 0.75rem;
}

.pricing-feature-icon.check {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

[data-theme="dark"] .pricing-feature-icon.check {
    background: rgba(21, 163, 85, 0.2);
}

.pricing-cta {
    width: 100%;
}

/* 13. FOOTER */
.footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-social-link {
    width: 40px;
    height: 40px;
    background: var(--color-surface-alt);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--color-primary);
    color: white;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--color-text-muted);
}

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

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* 14. RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .demo-visual {
        order: -1;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .free-trial-content {
        flex-direction: column;
        text-align: center;
    }

    .free-trial-features {
        justify-content: center;
    }

    .platforms-grid {
        flex-direction: column;
    }

    .demo-qr {
        right: -15px;
        bottom: -15px;
        width: 90px;
        height: 90px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* 15. ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}