/* Global Styles */
:root {
    --primary-color: #ff3e7f;
    --secondary-color: #0ea5e9;
    --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --text-color: #2d3748;
    --light-text: #718096;
    --bg-color: #ffffff;
    --light-bg: #f7fafc;
    --dark-bg: #1a202c;
    --border-radius: 12px;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    --button-shadow: 0 4px 6px rgba(255, 62, 127, 0.25);
    --font-main: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

h1 {
    font-size: 2rem;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 5rem 0;
}

/* Buttons */
.primary-button {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--button-shadow);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(255, 62, 127, 0.35);
    color: white;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.9rem 1.9rem;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.pricing-button {
    display: inline-block;
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--button-shadow);
    transition: all 0.3s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(255, 62, 127, 0.35);
    color: white;
}

/* Header */
header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.brand h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

nav ul {
    display: flex;
    list-style: none;
}

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

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

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: var(--light-bg);
    border-radius: 50%;
    z-index: -1;
}

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

.hero-text {
    flex: 1;
    padding-right: 3rem;
}

.hero-text h2 {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-text h2:after {
    left: 0;
    transform: none;
}

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

.hero-image {
    width: 100%;
    max-width: 400px;
}

/* Features Section */
.features {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

/* Experience Section */
.experience {
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 62, 127, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.experience-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.experience-text {
    flex: 1;
    padding-right: 3rem;
}

.experience-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.experience-image {
    width: 100%;
    max-width: 350px;
}

/* Pricing Section */
.pricing {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.pricing::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

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

.price-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.price-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA Section */
.cta {
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    color: white;
}

.cta h2:after {
    background: white;
}

.cta p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.cta .primary-button {
    background: white;
    color: var(--primary-color);
}

.cta .primary-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
}

.footer-column {
    margin-left: 4rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .footer-column {
        margin-left: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-text h2 {
        text-align: center;
    }
    
    .hero-text h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .experience-content {
        flex-direction: column-reverse;
    }
    
    .experience-text {
        padding-right: 0;
        margin-top: 3rem;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-around;
    }
    
    .footer-column {
        margin-left: 0;
    }
    
    .footer-column h4 {
        text-align: center;
    }
    
    .footer-column h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .feature-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    nav ul li {
        margin-left: 1rem;
    }
}
