/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f111a;
    color: #e4e4e7;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #181a25;
    border-bottom: 1px solid #272a3b;
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-center {
    flex: 2;
    text-align: center;
}

.nav-center h1 {
    color: #6366f1; /* A nice brand purple/blue */
    font-size: 1.8rem;
    letter-spacing: 1px;
}

/* The Login Button */
.login-btn {
    display: inline-block;
    background-color: #6366f1;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.login-btn:hover {
    background-color: #4f46e5;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #181a25 0%, #0f111a 100%);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    color: #a1a1aa;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: white;
    color: #0f111a;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.2s ease;
}

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

/* Features Section */
.features {
    padding: 80px 20px;
    text-align: center;
}

.features h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #181a25;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    border: 1px solid #272a3b;
    transition: border-color 0.3s ease;
}

.feature-card:hover {
    border-color: #6366f1;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #a1a1aa;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #272a3b;
    color: #71717a;
    margin-top: 40px;
}
/* Pricing Section Styles */
.pricing-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.pricing-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #a1a1aa;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #181a25;
    border: 1px solid #272a3b;
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
}

.pricing-card.popular {
    border-color: #6366f1;
    background: linear-gradient(180deg, #181a25 0%, #1e2030 100%);
    transform: scale(1.05); /* Makes the middle card slightly larger */
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6366f1;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.price {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
}

.price span {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .period {
    font-size: 1.2rem;
    color: #a1a1aa;
    font-weight: normal;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    color: #e4e4e7;
    font-size: 1.05rem;
}

.pricing-btn {
    display: block;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #272a3b;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.pricing-btn:hover {
    border-color: #a1a1aa;
}

.pricing-btn.primary {
    background-color: #6366f1;
    border-color: #6366f1;
}

.pricing-btn.primary:hover {
    background-color: #4f46e5;
    border-color: #4f46e5;
}
