/* Global Styles */
:root {
    --primary: #8C52FF;
    --secondary: #FF914D;
    --accent: #36AE7C;
    --background: #F3F3F7;
    --dark-background: #1A1A2E;
    --text: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #8C52FF, #FF914D);
    --card-shadow: 0 10px 25px rgba(140, 82, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.7;
}

.wrapper {
    overflow-x: hidden;
}

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

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

h2 span {
    color: var(--primary);
    position: relative;
}

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

p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

section {
    padding: 5rem 1.5rem;
}

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

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

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

.logo svg {
    margin-right: 0.75rem;
}

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

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

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

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.cta {
    display: flex;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn.primary {
    background: var(--gradient);
    color: var(--white);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(140, 82, 255, 0.2);
}

.btn.outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 1rem;
}

.btn.outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

/* Features Section */
.features {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

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

.icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.about-content {
    flex: 1;
    padding: 3rem;
}

.benefits {
    margin-top: 2.5rem;
}

.benefits li {
    display: flex;
    margin-bottom: 1.5rem;
}

.bullet {
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefits li div {
    flex: 1;
}

.benefits h4 {
    margin-bottom: 0.5rem;
}

.benefits p {
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    margin: 0 auto 1rem;
}

.cta-section h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.cta-section p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.badge {
    display: flex;
    align-items: center;
    margin: 0 1.5rem;
}

.badge svg {
    margin-right: 0.5rem;
}

.badge span {
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--dark-background);
    color: var(--white);
    padding: 4rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    flex: 100%;
}

.footer-logo svg {
    margin-right: 0.75rem;
}

.footer-logo span {
    color: var(--white);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.link-group {
    margin-right: 3rem;
    margin-bottom: 2rem;
    min-width: 150px;
}

.link-group h4 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
}

.link-group h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.link-group ul li {
    margin-bottom: 0.75rem;
}

.link-group ul li a {
    color: #BBB;
    transition: color 0.2s ease;
}

.link-group ul li a:hover {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta {
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .about {
        flex-direction: column;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
    }
    
    .header-inner {
        flex-direction: column;
    }
    
    nav {
        width: 100%;
        margin-top: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 0.75rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        margin: 0.75rem 0;
    }
    
    .footer-links {
        justify-content: space-around;
    }
    
    .link-group {
        margin-right: 0;
        flex: 0 0 40%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .cta {
        flex-direction: column;
    }
    
    .btn.outline {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .about {
        padding: 0;
    }
    
    .about-content {
        padding: 2rem 1rem;
    }
    
    .link-group {
        flex: 0 0 100%;
    }
}
