/* Base Styles & Reset */
:root {
    --primary-color: #6C63FF;
    --secondary-color: #FF6B8B;
    --accent-color: #5CE1E6;
    --dark-color: #333333;
    --light-color: #F5F5FF;
    --white: #FFFFFF;
    --gray: #888888;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #8A84FF 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #FF9A8B 100%);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

p {
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

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

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: var(--dark-color);
}

nav ul li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%236C63FF' fill-opacity='0.05' d='M45.5,15.5c0,0,24,90,69,90s45-82,93-82s45,90,45,90'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
}

.hero-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--gray);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

/* Features Section */
.features {
    background: var(--white);
}

.features h2, .how-it-works h2, .privacy-section h2, .faq-section h2, .cta-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* How It Works */
.how-it-works {
    background-color: var(--light-color);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
}

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

.cta-center {
    text-align: center;
    margin-top: 30px;
}

/* Privacy Section */
.privacy-section {
    background: var(--white);
}

.privacy-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.privacy-text {
    flex: 3;
}

.privacy-visual {
    flex: 2;
    display: flex;
    justify-content: center;
}

.privacy-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-text ul li {
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    background: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2, .cta-section p {
    color: var(--white);
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.cta-section .cta-button:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo h2 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 0;
}

.footer-tagline {
    color: var(--gray);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-nav h3, .footer-legal h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-nav ul li, .footer-legal ul li {
    margin-bottom: 8px;
}

.footer-nav ul li a, .footer-legal ul li a {
    color: var(--gray);
}

.footer-nav ul li a:hover, .footer-legal ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .privacy-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .privacy-text ul {
        display: inline-block;
        text-align: left;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: 0.3s;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
        gap: 15px;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .features h2, .how-it-works h2, .privacy-section h2, .faq-section h2, .cta-section h2 {
        font-size: 30px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}
