/* Base Styles */
:root {
    --primary: #FF5F6D;
    --secondary: #FFC371;
    --accent: #FF9A8B;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background: #fcfcfc;
    --background-dark: #f2f2f2;
    --gradient: linear-gradient(to right, var(--primary), var(--secondary));
    --shadow: 0 10px 30px rgba(255, 95, 109, 0.15);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    color: var(--text-dark);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 95, 109, 0.03),
        rgba(255, 95, 109, 0.03) 10px,
        rgba(255, 195, 113, 0.03) 10px,
        rgba(255, 195, 113, 0.03) 20px
    );
    z-index: -1;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: rgba(51, 51, 51, 0.8);
}

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

/* Button Styles */
.primary-button, .outline-button, .nav-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.primary-button {
    background: var(--gradient);
    color: var(--text-light);
    border: none;
    box-shadow: var(--shadow);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 95, 109, 0.3);
    color: var(--text-light);
}

.outline-button {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.outline-button:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.nav-button {
    background: var(--gradient);
    color: var(--text-light);
    padding: 8px 20px;
    box-shadow: 0 5px 15px rgba(255, 95, 109, 0.15);
}

.large {
    padding: 15px 32px;
    font-size: 1.1rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(252, 252, 252, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

.main-nav a:not(.nav-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.main-nav a:not(.nav-button):hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.hero-svg {
    max-width: 400px;
    width: 100%;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

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

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

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

.feature-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--background);
}

.process-container {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 25px;
}

.process-step {
    background: var(--gradient);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.process-content {
    padding-top: 5px;
}

.process-content h3 {
    margin-bottom: 10px;
}

.process-content p {
    margin-bottom: 0;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--background-dark);
}

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

.about-text p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--background);
}

.cta-card {
    background: var(--gradient);
    color: var(--text-light);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    color: var(--text-light);
}

.cta-card h2::after {
    background: rgba(255, 255, 255, 0.3);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-card .primary-button {
    background: var(--text-light);
    color: var(--primary);
}

.cta-card .primary-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background-color: #333;
    color: var(--text-light);
}

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

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

.footer-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
}

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

.footer-nav h3, .footer-legal h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
}

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

.footer-nav a, .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--background);
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav li {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .process-item {
        align-items: center;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
}
