:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --background: #FAFAFA;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.1);
}

.nav-link.active {
    color: var(--white);
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Fredoka', cursive;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: bounceIn 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.cta-button.secondary {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

/* Floating Elements */
.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--background);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: 1s;
}

.service-card h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(255, 230, 109, 0.05) 100%);
}

.features-list {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'Fredoka', cursive;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
}

/* About Us Section */
.about-us {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.about-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
}

.mission-content {
    text-align: center;
}

.mission-statement {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mission-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mission-point p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: var(--white);
}

.products-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-card {
    background: linear-gradient(135deg, var(--background) 0%, rgba(78, 205, 196, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card.coming-soon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 25px;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.product-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover .product-logo {
    transform: scale(1.05) rotate(5deg);
}

.product-card h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.product-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tag.ios {
    background-color: rgba(0, 122, 255, 0.1);
    color: #007AFF;
}

.tag.android {
    background-color: rgba(61, 220, 132, 0.1);
    color: #3DDC84;
}

.tag.coming {
    background-color: rgba(255, 107, 107, 0.1);
    color: var(--primary-color);
}

.product-features {
    text-align: left;
    margin-top: 1.5rem;
}

.product-features p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

.products-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Values Section (Updated from Why Us) */
.why-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(255, 230, 109, 0.05) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: translateX(0);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.value-card h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Pulse Animation for Coming Soon */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

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

.cta-section h2 {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Support Page Styles */
.support-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    text-align: center;
}

.page-title {
    font-family: 'Fredoka', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: 'Fredoka', cursive;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.scroll-link {
    color: var(--secondary-color);
    font-weight: 600;
}

.scroll-link:hover {
    color: var(--primary-color);
}

.response-time {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.help-card {
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow);
}

.help-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.help-card h4 {
    font-family: 'Fredoka', cursive;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.help-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h4 {
    font-family: 'Fredoka', cursive;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-light);
}

.support-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--background);
    border-radius: 20px;
}

.support-cta h3 {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.support-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg);
    }
    50% {
        transform: translateY(0) rotate(5deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2.5rem;
    border: none;
    border-radius: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
}

.close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    font-family: 'Fredoka', cursive;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Form Styles */
.launch-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.form-group input[type="email"],
.form-group input[type="text"] {
    padding: 0.8rem 1.2rem;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Platform Group Styles */
.platform-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-custom {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.radio-label input[type="radio"]:checked ~ .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-label:hover .radio-custom {
    border-color: var(--primary-color);
}

/* Checkbox Styles */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    padding-left: 2rem;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkbox-custom {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.checkbox-label:hover .checkbox-custom {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Submit Button */
.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Form Message */
.form-message {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    margin-top: 1rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: rgba(78, 205, 196, 0.1);
    color: var(--secondary-color);
    display: block;
}

.form-message.error {
    background-color: rgba(255, 107, 107, 0.1);
    color: var(--primary-color);
    display: block;
}

/* Products Page Styles */
.products-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 230, 109, 0.1) 100%);
    text-align: center;
}

.product-showcase {
    padding: 4rem 0;
    background-color: var(--white);
}

.product-detail-card {
    background-color: var(--background);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-detail-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-icon-large {
    font-size: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
}

.product-header-info h2 {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-detail-content {
    margin-top: 2rem;
}

.product-tagline {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-family: 'Fredoka', cursive;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.product-cta-section {
    text-align: center;
    margin-top: 3rem;
}

.tag.bilingual {
    background-color: rgba(147, 51, 234, 0.1);
    color: #9333EA;
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-radius: 30px;
}

.coming-soon-section h2 {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coming-soon-item {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.coming-soon-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.coming-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.coming-soon-item p {
    font-weight: 600;
    color: var(--text-dark);
}

/* Make CTA buttons work as links */
a.cta-button {
    display: inline-block;
    text-decoration: none;
}

/* Launch List Main Section */
.launch-list-main {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px dashed rgba(78, 205, 196, 0.3);
}

.launch-list-main p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
}

/* Product Selection Display */
.product-selection {
    background-color: var(--background);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
}

.selected-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.product-emoji {
    font-size: 2rem;
}

.product-logo-small {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.product-name {
    font-family: 'Fredoka', cursive;
}

/* Support Form Styles */
.support-form-section {
    max-width: 600px;
    padding: 3rem 0;
}

.support-form-section h2 {
    text-align: left;
}

.form-intro {
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.support-form {
    background-color: var(--background);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.support-form .form-group {
    margin-bottom: 1.5rem;
}

.support-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.support-form input[type="email"],
.support-form input[type="text"],
.support-form select,
.support-form textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.support-form select {
    cursor: pointer;
    background-color: var(--white);
}

.support-form textarea {
    resize: vertical;
    min-height: 120px;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .help-cards {
        grid-template-columns: 1fr;
    }
    
    .floating-element {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-section {
        grid-template-columns: 1fr;
    }
    
    .support-form {
        padding: 1.5rem;
    }
}