/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Color scheme */
:root {
    --dark-blue: #1e3a8a;
    --medium-blue: #3b82f6;
    --light-gray: #e5e7eb;
    --medium-gray: #6b7280;
    --white: #ffffff;
    --darker-gray: #d1d5db;
    --soft-blue: #eff6ff;
    --pale-blue: #dbeafe;
    --gradient-blue: linear-gradient(135deg, #3b82f6, #1e3a8a);
    --pricing-gradient: linear-gradient(120deg, #dbeafe 0%, #93c5fd 100%);
    --accent-border: #60a5fa;
    --header-blue: #bfdbfe;
}

/* General container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 0.5rem 0;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--white);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--light-gray);
}

/* Coming Soon Banner */
#coming-soon {
    background: var(--medium-blue);
    color: var(--white);
    text-align: center;
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

.coming-soon-banner {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.coming-soon-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.coming-soon-banner p {
    font-size: 1rem;
}

/* Hero Section */
#hero {
    background: var(--soft-blue);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    clip-path: circle(60% at 50% -20%);
    z-index: 0;
    opacity: 0.1;
}

#hero .container {
    position: relative;
    z-index: 1;
}

#hero h2 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    animation: fadeInDown 1s ease;
}

#hero .slogan {
    font-size: 1.5rem;
    color: var(--medium-gray);
    font-style: italic;
    animation: fadeInUp 1s ease 0.3s backwards;
}

/* Overview Section */
#overview {
    background: var(--white);
    padding: 3rem 0;
    text-align: center;
}

#overview h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

#overview p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Section */
#content {
    background: var(--pale-blue);
    padding: 5rem 0;
}

#content .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-blue);
    transition: height 0.3s ease;
}

.card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--medium-gray);
    position: relative;
    z-index: 1;
}

/* Pricing Section */
#pricing {
    background: var(--soft-blue);
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.pricing-card {
    background: var(--pricing-gradient);
    padding: 0 3rem 3rem 3rem;
    border-radius: 15px;
    border: 2px solid var(--accent-border);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: var(--header-blue);
    padding: 1rem 0;
    margin: 0 -3rem 1rem -3rem;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
}

.pricing-card .price {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.pricing-card .price span {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-weight: normal;
}

.pricing-card .description {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.pricing-card .pricing-btn {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    background: var(--gradient-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card .pricing-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.pricing-card .pricing-btn:hover::after {
    width: 300%;
    height: 300%;
}

.pricing-card .pricing-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.5);
}

/* Contact Us Section */
#contact-us {
    background: var(--pale-blue);
    padding: 5rem 0;
    text-align: center;
}

#contact-us h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

#contact-us p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#contact-us .beta-note {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-style: italic;
}

#contact-us form {
    max-width: 600px;
    margin: 0 auto;
}

#contact-us .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

#contact-us label {
    display: block;
    font-size: 1rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

#contact-us input,
#contact-us textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--medium-gray);
    background: var(--white);
    transition: border-color 0.3s ease;
}

#contact-us input:focus,
#contact-us textarea:focus {
    border-color: var(--medium-blue);
    outline: none;
}

#contact-us textarea {
    resize: vertical;
    min-height: 120px;
}

#contact-us .honeypot {
    position: absolute;
    left: -9999px;
}

#contact-us .submit-btn {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    background: var(--gradient-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact-us .submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.modal.success p {
    color: #16a34a;
}

.modal.error p {
    color: #dc2626;
}

.modal-btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    background: var(--medium-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-btn:hover {
    background: var(--dark-blue);
}

/* Footer */
footer {
    background: var(--gradient-blue);
    color: var(--white);
    text-align: center;
    padding: 1.5rem 0;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-blue);
        padding: 1rem 0;
        z-index: 99;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 0;
        text-align: center;
    }

    #hero h2 {
        font-size: 2rem;
    }

    #hero .slogan {
        font-size: 1.2rem;
    }

    #overview h2 {
        font-size: 1.6rem;
    }

    #overview p {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 0 2rem 2rem 2rem;
    }

    .pricing-card h3 {
        margin: 0 -2rem 1rem -2rem;
    }

    #contact-us h2 {
        font-size: 1.6rem;
    }

    #contact-us p {
        font-size: 1rem;
    }

    #contact-us .beta-note {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    #hero {
        padding: 3rem 0;
    }

    #hero h2 {
        font-size: 1.6rem;
    }

    #hero .slogan {
        font-size: 1rem;
    }

    #overview {
        padding: 2rem 0;
    }

    #overview h2 {
        font-size: 1.4rem;
    }

    #overview p {
        font-size: 0.9rem;
    }

    .card {
        padding: 1.5rem;
    }

    .pricing-card .price {
        font-size: 2.2rem;
    }

    .pricing-card .price span {
        font-size: 1rem;
    }

    .pricing-card .pricing-btn {
        padding: 0.7rem 1.5rem;
    }

    #contact-us {
        padding: 3rem 0;
    }

    #contact-us .form-group {
        margin-bottom: 1rem;
    }

    #contact-us .submit-btn {
        padding: 0.7rem 1.5rem;
    }

    #contact-us .beta-note {
        font-size: 0.85rem;
    }

    .coming-soon-banner h3 {
        font-size: 1.2rem;
    }

    .coming-soon-banner p {
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-content p {
        font-size: 1rem;
    }
}