:root {
    --purple-primary: #8B7AD8;
    --purple-light: #A396E8;
    --purple-dark: #6B5AB8;
    --orange-primary: #E87830;
    --orange-light: #FF9858;
    --navy: #2D2D5F;
    --navy-light: #3D3D7F;
    --peach: #FFDAB9;
    --pink: #FFB3D9;
    --yellow: #FFD966;
    --green: #A8E6B0;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--purple-primary);
}

.nav-links .btn-primary {
    color: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 122, 216, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.hero {
    background: linear-gradient(135deg, #F5F3FF 0%, #FFF5F0 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 122, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--navy);
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--orange-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.hero-note {
    font-size: 14px;
    color: var(--gray-600);
}

.hero-icon {
    width: 100%;
    max-width: 450px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(139, 122, 216, 0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--navy);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--purple-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(139, 122, 216, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--orange-primary) 100%);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.connector-text {
    max-width: 700px;
    margin: 60px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-700);
    font-style: italic;
}

.features-detail {
    background: linear-gradient(135deg, #F5F3FF 0%, #FFF5F0 100%);
    border-radius: 24px;
    padding: 60px;
}

.features-detail-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--navy);
    text-align: center;
}

.features-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-600);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--purple-primary);
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--navy);
}

.feature-item p {
    color: var(--gray-600);
    font-size: 15px;
}

.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9F7FF 0%, #FFF9F5 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 60px 0 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(139, 122, 216, 0.2);
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover .card-image {
    transform: scale(1.05);
}

.card-label {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 122, 216, 0.05), rgba(232, 120, 48, 0.05));
}

.pricing {
    padding: 100px 0;
    background: var(--gray-50);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    border: 2px solid var(--purple-primary);
    position: relative;
    box-shadow: 0 20px 60px rgba(139, 122, 216, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--orange-primary) 100%);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    margin-top: 16px;
    color: var(--navy);
}

.pricing-price {
    text-align: center;
    margin-bottom: 16px;
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--navy);
}

.price-period {
    font-size: 20px;
    color: var(--gray-600);
}

.pricing-description {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 32px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple-primary);
    font-weight: 700;
    font-size: 20px;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--navy) 100%);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--purple-primary);
}

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

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .hero-icon {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .card-image-wrapper {
        height: 180px;
    }
    
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .nav-links a:not(.btn) {
        display: none;
    }
    
    .features-detail {
        padding: 32px 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card-image-wrapper {
        height: 160px;
    }
    
    .gallery {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

.cta-note {
    margin-top: 20px;
    font-size: 15px;
    color: var(--gray-600);
}

.features-closing {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-600);
    font-style: italic;
}
