:root {
    --primary-color: #6a3de8;
    --secondary-color: #00e6c3;
    --accent-color: #ff7e5f;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333344;
    --gray-color: #7c7c8a;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #9b6dff);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #00b8a9);
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #feb47b);
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 4px;
    width: 60px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    transform: scale(0);
    border-radius: 50px;
    z-index: -1;
}

.btn:hover:after {
    transform: scale(1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav ul li a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav ul li a:hover:before {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px;
}

.btn-nav:before {
    display: none;
}

.menu-toggle {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.side-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow-y: auto;
}

.side-nav.active {
    right: 0;
}

.side-nav-content {
    padding: 30px;
}

.side-nav-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.nav-close {
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-color);
}

.side-nav-links {
    list-style: none;
    padding: 0;
}

.side-nav-links li {
    margin-bottom: 20px;
}

.side-nav-links a {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 5px 0;
    transition: var(--transition);
}

.side-nav-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero .highlight:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
}

.hero p.lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    height: 400px;
}

.geometric-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    z-index: 1;
}

.payment-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-visual {
    width: 250px;
    height: 150px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    position: absolute;
    transform: rotate(-15deg) translateX(-30px);
}

.device-visual {
    width: 120px;
    height: 200px;
    background: var(--dark-color);
    border-radius: 15px;
    position: absolute;
    transform: rotate(10deg) translateX(70px);
    box-shadow: var(--shadow);
}

.wave-element {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.7;
    animation: wave 2s infinite;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    background: white;
    border-radius: 100% 100% 0 0 / 100% 100% 0 0;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 70% 30% 70% 30%;
    }
    75% {
        border-radius: 70% 30% 30% 70% / 30% 70% 30% 70%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.features {
    background-color: white;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover:before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card.active {
    background: var(--gradient-primary);
    color: white;
}

.feature-card.active h3,
.feature-card.active p,
.feature-card.active .feature-icon {
    color: white;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-card p {
    color: var(--gray-color);
    margin-bottom: 0;
    transition: var(--transition);
}

.how-it-works {
    background-color: #f8f9fa;
    position: relative;
}

.process-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
}

.process-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0.3;
}

.process-step {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.testimonials {
    background-color: white;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card.featured {
    background: var(--gradient-secondary);
    color: var(--dark-color);
}

.testimonial-content {
    position: relative;
    padding-bottom: 20px;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    top: -40px;
    left: -10px;
    color: rgba(106, 61, 232, 0.1);
    font-family: serif;
}

.testimonial-card.featured .testimonial-content:before {
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.testimonial-card.featured .author-info p {
    color: rgba(0, 0, 0, 0.6);
}

.contact {
    background-color: #f8f9fa;
}

.contact-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.map-container {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
}

.form-control {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-select {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.get-started {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.get-started:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.get-started:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.get-started-content {
    position: relative;
    z-index: 2;
}

.get-started-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.get-started-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 2;
}

.get-started-form h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-info p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter button {
    padding: 0 20px;
    border: none;
    background: var(--gradient-secondary);
    color: var(--dark-color);
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    cursor: pointer;
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    opacity: 0.7;
    margin-bottom: 0;
}

.cookie-consent {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    transition: var(--transition);
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 20px;
}

.privacy-policy {
    padding: 150px 0 80px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.privacy-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 10px;
}

.contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .get-started-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p.lead {
        font-size: 1rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .process-wrapper:before {
        left: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-consent {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
} 