:root {
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --accent-primary: #3b82f6; /* Modern Blue */
    --accent-secondary: #0ea5e9;
    --accent-glow: rgba(59, 130, 246, 0.2);
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.05), transparent 30%),
        radial-gradient(circle at 100% 100%, rgba(14, 165, 233, 0.05), transparent 30%);
    background-attachment: fixed;
    min-height: 100vh;
}

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

/* Header Navigation Bar */
.header {
    position: relative;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    width: 100%;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.header-logo {
    height: 38px; /* Set height to control size, let width be auto for rectangular logos */
    width: auto;
    object-fit: contain;
}
.header-text {
    display: flex;
    flex-direction: column;
}
.header-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    line-height: 1.1;
    margin: 0;
}
.header-subtitle {
    font-size: 0.65rem;
    color: var(--accent-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}
/* Adjust dropdown for the new nav layout */
.header .dropdown-menu {
    position: relative;
}
.header .dropbtn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: none;
}
.header .dropbtn:hover {
    background: #f1f5f9;
}
.header .dropdown-content {
    right: 0; /* Align dropdown menu to the right */
    left: auto;
}

/* Pre-lander Specific */
.prelander-hero {
    text-align: center;
    max-width: 700px;
    margin: 20px auto 40px;
}
.prelander-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #0f172a;
    letter-spacing: -1px;
}
.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4); }
    100% { transform: scale(1); box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3); }
}
.prelander-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-primary);
}
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.feature-icon {
    font-size: 1.6rem;
    color: var(--accent-primary);
}
.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

/* Premium Buttons */
.btn-primary {
    display: inline-block;
    background: var(--text-main);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(30, 41, 59, 0.2);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(30, 41, 59, 0.3);
    background: #0f172a;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    justify-items: center;
}
.pricing-card-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px; /* Prevent it from getting too large on big screens */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pricing-card-wrapper:hover {
    transform: translateY(-8px);
}
.pricing-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.04);
}
.btn-whatsapp {
    width: 100%;
    background: #ffffff;
    color: #1e293b;
    border: 2px solid #25d366;
    padding: 15px 20px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.1);
}
.btn-whatsapp i {
    color: #25d366;
    font-size: 1.3rem;
}
.btn-whatsapp:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover i {
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .prelander-heading {
        font-size: 2.2rem;
    }
    .header {
        padding-top: 30px;
    }
    .pricing-grid {
        gap: 40px;
    }
}
@media (max-width: 480px) {
    .prelander-heading {
        font-size: 1.8rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .header-logo {
        width: 70px;
        height: 70px;
    }
    .header-title {
        font-size: 1.8rem;
    }
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Modal CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #94a3b8;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-btn:hover {
    color: #1e293b;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
    font-size: 0.95rem;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
    .total-price-box {
        background: #f1f5f9;
        padding: 15px;
        border-radius: 12px;
        font-size: 1.2rem;
        font-weight: 800;
        color: #0f172a;
        text-align: center;
        margin-bottom: 20px;
    }

/* Dropdown Menu */
.dropbtn {
    background-color: #fff;
    color: #334155;
    padding: 8px 12px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    font-family: inherit;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    gap: 8px;
}
.dropbtn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}
.dropdown-menu {
    position: relative;
    display: inline-block;
    z-index: 1000;
}
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background-color: #ffffff;
    min-width: 230px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    text-align: left;
}
.dropdown-content a {
    color: #334155;
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s;
}
.dropdown-content a:last-child {
    border-bottom: none;
}
.dropdown-content a i {
    margin-right: 12px;
    color: #3b82f6;
    width: 20px;
    text-align: center;
}
.dropdown-content a:hover {
    background-color: #f8fafc;
    color: #0f172a;
    padding-left: 22px;
}
.dropdown-content.show {
    display: block;
}

/* Mobile header styles are handled via inline styles in HTML */
