
:root {
    --color-primary: #FF5E5B;
    --color-secondary: #00C2A8;
    --color-accent-1: #FFD166;
    --color-accent-2: #7B61FF;
    --color-background: #FFFFFF;
    --color-background-alt: #F7F9FC;
    --color-text: #2C3E50;
    --color-text-secondary: #6C7A89;
    --font-family: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 700;
}

p, li {
    font-family: var(--font-family);
    font-weight: 400;
}

a {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

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


.uk-button {
    font-family: var(--font-family);
    font-weight: 500;
    border-radius: 6px;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.uk-button-primary {
    background-color: var(--color-primary);
    color: white;
}

.uk-button-primary:hover {
    background-color: #e04a47;
    color: white;
}

.uk-button-secondary {
    background-color: var(--color-secondary);
    color: white;
}

.uk-button-secondary:hover {
    background-color: #00a58e;
    color: white;
}

.uk-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.uk-section-primary {
    background: linear-gradient(135deg, var(--color-primary), #e04a47);
}

.uk-section-secondary {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
}

.uk-section-muted {
    background-color: var(--color-background-alt);
}

.uk-navbar-container:not(.uk-navbar-transparent) {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.uk-navbar-nav > li > a {
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--color-text);
    text-transform: none;
    letter-spacing: 0.3px;
}

.uk-navbar-nav > li:hover > a, 
.uk-navbar-nav > li.uk-active > a {
    color: var(--color-primary);
}




header {
    position: sticky;
    top: 0;
    z-index: 980;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


.hero-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-illustration.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.parallax-content {
    z-index: 1;
}

.parallax-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


.character-section img {
    max-width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}


.features-section {
    position: relative;
    z-index: 1;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary), #e04a47);
    opacity: 0.9;
    z-index: -1;
}

.features-section .uk-card {
    margin-bottom: 30px;
    height: 100%;
}

.features-section .uk-card-title {
    font-size: 1.5rem;
    color: var(--color-primary);
}


.metrics-section {
    position: relative;
    overflow: hidden;
}

.uk-card-default {
  background-color: inherit;
}

.metrics-card {
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.metrics-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}


.use-case-card {
    height: 100%;
}

.use-case-card h3 {
    color: var(--color-primary);
}


.solution-card {
    background: linear-gradient(135deg, var(--color-secondary), #00a58e);
    color: white;
}

.solution-card h3, .solution-card i {
    color: white !important;
}

.uk-list-check li {
    position: relative;
    padding-left: 30px;
}

.uk-list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}


.cta-section {
    position: relative;
    z-index: 1;
}


#contact-form {
    scroll-margin-top: 100px;
}

#demo-request-form .uk-input,
#demo-request-form .uk-textarea {
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}

#demo-request-form .uk-input:focus,
#demo-request-form .uk-textarea:focus {
    border-color: var(--color-primary);
}


.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}


footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer h4 {
    color: var(--color-primary);
}

footer a {
    color: var(--color-text);
}

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


#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: none;
}

#cookie-modal .uk-modal-dialog {
    border-radius: 12px;
}

#cookie-modal .cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

#cookie-modal .cookie-category:last-child {
    border-bottom: none;
}


@media (max-width: 960px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .metrics-number {
        font-size: 2.5rem;
    }
    
    .uk-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .metrics-number {
        font-size: 2rem;
    }
}


.iti {
    width: 100%;
}


.uk-text-emphasis {
    font-weight: 500;
    color: var(--color-text);
}

.uk-divider-small {
    width: 50px;
    height: 2px;
    background-color: var(--color-primary);
}