:root {
    --bg-color: #0f172a; 
    --card-bg: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #38bdf8; 
    --accent-hover: #0284c7; 
    --accent2: #ffb400; /* amber for highlights */
    --accent2-hover: #e68900;
    --accent3: #a78bfa; /* purple */
    --accent3-hover: #7c3aed;
    --accent4: #fb7185; /* pink */
}

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

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    /* animated gradient background with more colors */
    background: linear-gradient(135deg, #0f172a 0%, #1a1f36 20%, #2563eb 40%, #7c3aed 60%, #db2777 80%, #0f172a 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 900px;
    width: 100%;
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    text-align: center;
    border-top: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
}

/* Add a subtle decorative pattern */
.container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2338bdf8' fill-opacity='0.05'%3E%3Cpath d='M10 0l3 9h9l-7 6 2 9-9-4-9 4 2-9-7-6h9z'/%3E%3C/g%3E%3C/svg%3E");
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    /* Optional floating animation */
    animation: float 3s ease-in-out infinite;
}

.logo span {
    color: var(--accent);
}

.acronym {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

/* Typing effect will be handled by JS */

.status-badge {
    display: inline-block;
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
    /* Pulse animation */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

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

h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--accent), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-item {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-item::before {
    content: "��✓";
    color: var(--accent);
    font-weight: bold;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: #0f172a;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Secondary button variant */
.cta-button.secondary {
    background-color: var(--accent2);
    color: #0f172a;
}

.cta-button.secondary:hover {
    background-color: var(--accent2-hover);
    color: #ffffff;
}

/* Dropdown */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none; /* controlled by JS */
    position: absolute;
    background-color: var(--card-bg);
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
    z-index: 1000;
    border: 1px solid rgba(56,189,248,0.2);
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-content a {
    color: var(--text-main);
    padding: 0.5rem;
    text-decoration: none;
    display: block;
    border-radius: 6px;
    margin: 0.25rem 0;
}
.dropdown-content a:hover {
    background-color: var(--accent);
    color: #0f172a;
}

/* Pricing Section */
.pricing-section {
    margin: 3rem 0;
    text-align: center;
}
.pricing-section h2 {
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.pricing-tier {
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    background-color: var(--card-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: var(--accent2);
}
.pricing-tier.one-time {
    border-color: var(--accent2);
}
.pricing-tier.one-time:hover {
    border-color: var(--accent);
}
.pricing-tier h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.pricing-tier.one-time h3 {
    color: var(--accent2);
}
.pricing-tier h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin: 0.5rem auto;
}
.pricing-tier.one-time h3::after {
    background: var(--accent2);
}
.pricing-tier ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    display: inline-block;
}
.pricing-tier ul li {
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}
.pricing-tier ul li::before {
    content: "��✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.pricing-tier.one-time ul li::before {
    color: var(--accent2);
}
.pricing-tier .one-time-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    display: block;
}

/* Contact Form */
.contact-section {
    margin: 3rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 2px solid var(--accent4);
}
.contact-section h2 {
    color: var(--accent4);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}
.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-section label {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    display: block;
}
.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--text-muted);
    border-radius: 8px;
    background-color: rgba(15,23,42,0.6);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, background-color 0.3s;
}
.contact-section input:focus,
.contact-section textarea:focus {
    outline: none;
    border-color: var(--accent4);
    background-color: rgba(15,23,42,0.8);
}
.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}
.contact-section button.cta-button {
    align-self: start;
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }
    .services {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .contact-section {
        margin: 2rem 0;
        padding: 1.5rem;
    }
}