/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    min-height: 100vh;
}

/* Announcement bar */
.announcement-bar {
    background: linear-gradient(90deg, #F59E0B 0%, #EC4899 100%);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 1000;
}

.announcement-bar a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

/* Header */
.navbar {
    background: rgba(107, 70, 193, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.navbar-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #EC4899 !important;
}

.cta-button {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
    color: white;
}

/* Hero section */
.hero-section {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-intro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-intro h2 {
    color: #EC4899;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.hero-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Demo section */
.demo-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.demo-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-video {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    background: rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #EC4899;
}

/* Features section */
.features-section {
    padding: 6rem 0;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Stats section */
.stats-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #EC4899;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #EC4899;
    margin-bottom: 0.5rem;
}

/* Pricing preview */
.pricing-preview {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid #EC4899;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #EC4899;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EC4899;
    margin-bottom: 0.5rem;
}

.price-desc {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer h5 {
    color: #EC4899;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #EC4899;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-section h2 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .hero-intro {
        padding: 1.5rem;
    }
    
    .hero-intro h2 {
        font-size: 1.5rem;
    }
    
    .hero-intro p {
        font-size: 1rem;
    }
}

/* Button styles */
.btn-outline-primary {
    border-color: #EC4899;
    color: #EC4899;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #EC4899;
    border-color: #EC4899;
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #BE185D 0%, #EC4899 100%);
    color: white;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #EC4899;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Pricing page specific styles */
.pricing-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.currency-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.currency-label {
    font-weight: 600;
    color: white;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: 0.3s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: #EC4899;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + label {
    background: rgba(255, 255, 255, 0.5);
}

.toggle-switch input:checked + label:before {
    transform: translateX(30px);
}

.pricing-subtitle {
    opacity: 0.8;
    font-size: 0.9rem;
}

.pricing-plans {
    padding: 4rem 0;
}

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

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pricing-icon i {
    font-size: 1.5rem;
    color: white;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #EC4899;
    font-size: 0.9rem;
}

.pricing-faq {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(236, 72, 153, 0.2);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
}

/* Contact page styles */
.contact-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-form-section {
    padding: 4rem 0;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-card h2 {
    color: #EC4899;
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
    padding: 0.75rem;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #EC4899;
    box-shadow: 0 0 0 0.2rem rgba(236, 72, 153, 0.25);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-select option {
    background: #6B46C1;
    color: white;
}

.form-check-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
    background: #EC4899;
    border-color: #EC4899;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

.form-check-label a {
    color: #EC4899;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.thank-you-message {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.thank-you-message i {
    font-size: 4rem;
    color: #22C55E;
    margin-bottom: 1rem;
}

.thank-you-message h3 {
    color: #22C55E;
    margin-bottom: 1rem;
}

.thank-you-message a {
    color: #EC4899;
    text-decoration: none;
}

.thank-you-message a:hover {
    text-decoration: underline;
}

.contact-info {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-card h4 {
    color: #EC4899;
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #EC4899;
}

/* Legal pages styles */
.legal-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-content {
    padding: 4rem 0;
}

.legal-document {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-document h2 {
    color: #EC4899;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    margin-bottom: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.legal-document ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-details {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-details a {
    color: #EC4899;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}
