:root {
    --primary-purple: rgb(85, 18, 138);
    --nav-link-color: rgb(194, 153, 255);
    --text-primary: rgb(22, 22, 28);
    --text-secondary: rgb(38, 38, 45);
    --form-bg: rgba(255, 255, 255, 0.08);
    --form-border: rgba(255, 255, 255, 0.25);
    --body-bg: rgb(250, 247, 255);
    --white: rgb(255, 255, 255);
    --button-text: rgb(241, 232, 255);
}

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

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    background: var(--body-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.logo-text {
    font-family: 'Quinn', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--nav-link-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--button-text);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(85, 18, 138, 0.8);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(85, 18, 138, 0.8), rgba(194, 153, 255, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 16px;
}

.badge-text {
    font-size: 12px;
    font-weight: 500;
}

.badge-number {
    background: var(--white);
    color: var(--primary-purple);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.hero-title {
    font-family: 'Quinn', sans-serif;
    font-size: 215.52px;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background: var(--primary-purple);
    color: var(--button-text);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: rgba(85, 18, 138, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(85, 18, 138, 0.3);
}

.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: 'N27', sans-serif;
    font-size: 23.36px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-quote {
    font-size: 60px;
    color: var(--nav-link-color);
    font-family: 'Quinn', sans-serif;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-family: 'N27', sans-serif;
    font-size: 14.4px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--nav-link-color);
    text-transform: uppercase;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.welcome {
    padding: 100px 0;
    background: var(--body-bg);
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    font-family: 'N27', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--nav-link-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-main-title {
    font-family: 'Quinn', sans-serif;
    font-size: 100px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 30px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    background: linear-gradient(135deg, var(--primary-purple), rgba(194, 153, 255, 0.8));
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/cta-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-family: 'Quinn', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-purple);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.features-preview {
    padding: 100px 0;
    background: var(--white);
}

.features-title {
    font-family: 'Quinn', sans-serif;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: var(--body-bg);
    transition: transform 0.3s ease;
}

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

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

.feature-title {
    font-family: 'N27', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-family: 'Quinn', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.footer-description {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-title {
    font-family: 'N27', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.8;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 80px;
    }
    
    .section-main-title {
        font-size: 60px;
    }
    
    .cta-title {
        font-size: 50px;
    }
    
    .features-title {
        font-size: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 60px;
    }
    
    .section-main-title {
        font-size: 40px;
    }
    
    .cta-title {
        font-size: 35px;
    }
}
