/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500;600;700&display=swap');

/* General Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #FF6B95 0%, #7366FF 100%);
    --secondary-gradient: linear-gradient(135deg, #7366FF 0%, #3B82F6 100%);
    --accent-gradient: linear-gradient(135deg, #FF6B95 0%, #FFB17A 100%);
    --glass-background: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --transition-default: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #151515;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 107, 149, 0.1), transparent 30%),
                radial-gradient(circle at top right, rgba(115, 102, 255, 0.1), transparent 30%),
                radial-gradient(circle at bottom left, rgba(115, 102, 255, 0.1), transparent 30%),
                radial-gradient(circle at bottom right, rgba(255, 177, 122, 0.1), transparent 30%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: var(--glass-border);
    padding: 24px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-default);
}

header:hover {
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-default);
}

.logo::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 50%;
}

.logo:hover {
    transform: translateY(-2px);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: var(--transition-default);
    padding: 8px 0;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-default);
}

nav ul li a:hover {
    color: #7366FF;
}

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

/* Hero Section */
.hero {
    background: transparent;
    color: #151515;
    padding: 180px 0 120px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 70%;
    background: var(--primary-gradient);
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
    transform: translateY(-30%);
}

.main-title {
    font-size: 92px;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, #151515 30%, #555 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.stats .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.stat {
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    flex: 1;
    box-shadow: var(--glass-shadow);
    text-align: center;
    transform: translateY(0);
    transition: var(--transition-default);
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(31, 38, 135, 0.2);
}

.stat h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat p {
    font-size: 18px;
    color: #555;
}

/* Logos Section */
.logos {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logos::before {
    content: "";
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 80%;
    background: var(--secondary-gradient);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

.logos h2 {
    font-size: 32px;
    margin-bottom: 60px;
    color: #151515;
}

.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.logos img {
    height: 40px;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: var(--transition-default);
}

.logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    background: transparent;
    color: #151515;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 120%;
    height: 70%;
    background: var(--accent-gradient);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
    transform: translateY(30%);
}

.cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #151515 30%, #555 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.6;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-default);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
    box-shadow: 0 10px 20px -10px rgba(115, 102, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -15px rgba(115, 102, 255, 0.6);
}

.btn-secondary {
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: var(--glass-border);
    color: #333;
    box-shadow: var(--glass-shadow);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(31, 38, 135, 0.2);
    color: #7366FF;
}

/* Footer */
footer {
    position: relative;
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #333;
    padding: 80px 0 30px;
    overflow: hidden;
    margin-top: 80px;
}

footer::before {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 120%;
    height: 100%;
    background: var(--secondary-gradient);
    filter: blur(100px);
    opacity: 0.05;
    z-index: -1;
    border-radius: 50%;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.features::before {
    content: "";
    position: absolute;
    top: 20%;
    left: -10%;
    width: 70%;
    height: 60%;
    background: var(--primary-gradient);
    filter: blur(100px);
    opacity: 0.08;
    z-index: -1;
    border-radius: 50%;
}

.section-subheading {
    text-align: center;
    max-width: 700px;
    margin: 20px auto 60px;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-card {
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 40px;
    flex: 1;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-default);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px rgba(31, 38, 135, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #151515;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 40px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-default);
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(31, 38, 135, 0.2);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #151515;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Pricing Note */
.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto 0;
    max-width: 700px;
    padding: 24px 40px;
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.note-icon {
    margin-right: 16px;
    color: #7366FF;
    font-size: 24px;
}

.pricing-note p {
    color: #555;
}

/* Mission Section */
.mission-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.mission-text {
    flex: 1.5;
}

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

.floating-graphic {
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(115, 102, 255, 0.3);
}

.floating-graphic i {
    font-size: 100px;
    color: white;
}

/* Card and Benefit Icons */
.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

/* Point Icons */
.point-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.point-icon i {
    font-size: 24px;
    color: white;
}

/* Social Media Large */
.social-media-large {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-media-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-background);
    border: var(--glass-border);
    border-radius: 50%;
    transition: var(--transition-default);
    color: #555;
    font-size: 18px;
}

.social-media-large a:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
    background: var(--primary-gradient);
    color: white;
}

/* Stat Icons */
.stat-icon {
    margin-top: 20px;
    font-size: 32px;
    color: rgba(115, 102, 255, 0.3);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Join Text */
.join-text {
    margin: 40px 0 30px;
    font-size: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Careers Section */
.careers {
    padding: 100px 0;
    position: relative;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

.position {
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 30px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-default);
    display: flex;
    flex-direction: column;
}

.position:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(31, 38, 135, 0.2);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.position h3 {
    font-size: 20px;
    font-weight: 700;
    color: #151515;
}

.position-location {
    font-size: 14px;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
}

.position p {
    color: #555;
    margin-bottom: 24px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    align-self: flex-start;
}

/* Active Nav Link */
nav ul li a.active {
    color: #7366FF;
    font-weight: 600;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .tech-cards, .value-cards, .feature-cards {
        flex-direction: column;
    }
    
    .card, .feature-card {
        width: 100%;
    }
    
    .mission-content {
        flex-direction: column;
    }
    
    .stats .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .plan {
        width: 90%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-points {
        flex-direction: column;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 16px;
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-about {
    max-width: 300px;
    margin-right: 60px;
}

.footer-about h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-about p {
    color: #555;
    line-height: 1.7;
}

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

.link-group h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: #555;
    text-decoration: none;
    transition: var(--transition-default);
    font-size: 15px;
}

.link-group ul li a:hover {
    color: #7366FF;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
}

.footer-bottom p {
    color: #777;
}

.social-media {
    display: flex;
    gap: 16px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--glass-background);
    border: var(--glass-border);
    border-radius: 50%;
    transition: var(--transition-default);
    color: #555;
}

.social-media a:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
    background: var(--primary-gradient);
    color: white;
}

/* About Page */
.about-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    color: #151515;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 120%;
    height: 70%;
    background: var(--secondary-gradient);
    filter: blur(100px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
    transform: translateY(-30%);
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #151515 30%, #555 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease-out;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.mission, .technology, .benefits, .values {
    padding: 100px 0;
    position: relative;
}

.mission::before, 
.technology::before, 
.values::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 50%;
    background: var(--accent-gradient);
    filter: blur(100px);
    opacity: 0.08;
    z-index: -1;
    border-radius: 50%;
}

.mission::before {
    bottom: 0;
    left: -20%;
}

.technology::before {
    top: 20%;
    right: -20%;
}

.values::before {
    bottom: 20%;
    left: -20%;
}

.tech-cards, .value-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
}

.card {
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    flex: 1;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-default);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(31, 38, 135, 0.2);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #151515;
}

.card p {
    color: #555;
    line-height: 1.7;
}

.benefits .benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit {
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 40px;
    border-radius: 24px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-default);
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(31, 38, 135, 0.2);
}

.benefit h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #151515;
}

.benefit p {
    color: #555;
    line-height: 1.7;
}

/* Pricing Page */
.pricing-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    color: #151515;
    overflow: hidden;
}

.pricing-hero::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 70%;
    background: var(--accent-gradient);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
    transform: translateY(-30%);
}

.pricing-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #151515 30%, #555 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease-out;
}

.pricing-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.toggle-buttons {
    display: inline-flex;
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    padding: 6px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    margin-top: 20px;
}

.toggle-buttons button {
    background: transparent;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition-default);
}

.toggle-buttons button.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(115, 102, 255, 0.3);
}

.pricing-plans {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.plan {
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    width: 320px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-default);
}

.plan:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px rgba(31, 38, 135, 0.2);
}

.plan h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #151515;
}

.plan p {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
    min-height: 48px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin: 30px 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-left: 5px;
}

.plan ul {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    min-height: 100px;
}

.plan ul li {
    margin-bottom: 15px;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.plan ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #7366FF;
    font-weight: 700;
}

.plan .btn {
    width: 100%;
}

/* Team Page */
.team-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    color: #151515;
    overflow: hidden;
}

.team-hero::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 70%;
    background: var(--primary-gradient);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
    transform: translateY(-30%);
}

.team-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #151515 30%, #555 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease-out;
}

.team-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.team-members {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.member {
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-default);
}

.member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px rgba(31, 38, 135, 0.2);
}

.member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 5px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition-default);
}

.member:hover img {
    border-color: rgba(115, 102, 255, 0.2);
    transform: scale(1.05);
}

.member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #151515;
}

.member p {
    color: #555;
    line-height: 1.6;
}

.member p:nth-of-type(1) {
    font-weight: 600;
    color: #7366FF;
    margin-bottom: 16px;
}

.join-mission {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #151515;
    overflow: hidden;
}

.join-mission::before {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 70%;
    height: 80%;
    background: var(--secondary-gradient);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

.mission-points {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px 0;
}

.point {
    flex: 1;
    text-align: left;
    padding: 40px;
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-default);
}

.point:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(31, 38, 135, 0.2);
}

.point h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #151515;
}

.point p {
    color: #555;
    line-height: 1.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
