:root {
    --brand-dark-blue: rgba(2, 1, 90, 1);
    --brand-dark-gray: rgb(58, 58, 58);
    --brand-text-muted: rgba(78, 87, 116, 1);
    --brand-accent-orange: rgb(255, 153, 0);
    --brand-bg-light: rgba(243, 247, 251, 1);
    --brand-white: #ffffff;
    --error-red: #e53e3e;
    --success-green: #38a169;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.6;
    color: var(--brand-text-muted);
    background-color: var(--brand-white);
}

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

/* Header */
header {
    background-color: var(--brand-bg-light);
    padding: 4rem 0; /* Increased padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glow-element {
    position: absolute;
    border-radius: 100%;
    filter: blur(150px); /* 125 * 0.8 */
    -webkit-filter: blur(150px); /* 125 * 0.8 */
    z-index: 0;
}

.glow-1 {
    background-color: #fcc53c;
    width: 364px;  /* 455 * 0.8 */
    height: 364px; /* 455 * 0.8 */
    top: -156px;   /* -195 * 0.8 */
    right: -104px; /* -130 * 0.8 */
}

.glow-2 {
    background-color: #fbb140;
    width: 312px;  /* 390 * 0.8 */
    height: 312px; /* 390 * 0.8 */
    top: -104px;   /* -130 * 0.8 */
    left: -156px;  /* -195 * 0.8 */
}

.glow-3 {
    background-color: #faea34; /* Bright Yellow */
    width: 291px;  /* 364 * 0.8 */
    height: 291px; /* 364 * 0.8 */
    top: -125px;   /* -156 * 0.8 */
    left: 20%; /* Positioned towards the left-center */
}

.glow-4 {
    background-color: #fbb140; /* Accent Orange - same as glow-2 but can be var(--brand-yellow-orange) */
    width: 260px;  /* 325 * 0.8 */
    height: 260px; /* 325 * 0.8 */
    top: -83px;    /* -104 * 0.8 */
    right: 25%; /* Positioned towards the right-center */
}

.glow-5 {
    background-color: #faea34; /* Bright Yellow - As requested */
    width: 320px;  /* 400 * 0.8 */
    height: 320px; /* 400 * 0.8 */
    top: -144px;   /* -180 * 0.8 */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
}

.glow-6 {
    background-color: #fbb140; /* Accent Orange - As requested */
    width: 280px;  /* 350 * 0.8 */
    height: 280px; /* 350 * 0.8 */
    top: -120px;   /* -150 * 0.8 */
    left: 5%; /* Positioned to fill a gap on the left side */
}


header .container {
    position: relative;
    z-index: 1;
}

.logo {
    display: block;
    margin: 0 auto 1.5rem auto;
    width: 300px;
    height: auto;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--brand-dark-gray);
}

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

.cta-button {
    display: none; /* Hidden by default, shown on mobile */
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: var(--brand-accent-orange);
    color: var(--brand-white);
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    color: var(--brand-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(58, 58, 58, 0.15);
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    padding: 5rem 0; /* Added more top/bottom padding */
    align-items: start;
}

.content-section {
    padding-right: 2rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--brand-dark-gray);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--brand-bg-light);
    border-left: 4px solid var(--brand-accent-orange);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-dark-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-description {
    font-size: 0.95rem;
    padding-left: 2.25rem; /* Align with title text */
}

.icon {
    width: 24px;
    height: 24px;
    color: var(--brand-accent-orange);
    flex-shrink: 0;
}

.task-list {
    list-style: none;
    padding-left: 0;
    color: var(--brand-text-muted);
}
.task-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

/* Form Styles */
.signup-form {
    background: var(--brand-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 2rem;
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-dark-blue);
    text-align: center;
}

.form-subtitle {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem; /* Matches form-group margin-bottom */
}


label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--brand-dark-blue);
    font-size: 0.9rem;
}

.required {
    color: var(--error-red);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    transition: all 0.2s ease;
}

input:focus {
    outline: none;
    border-color: var(--brand-accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
}

input.error {
    border-color: var(--error-red);
}

input.valid {
    border-color: var(--success-green);
}

.error-message {
    color: var(--error-red);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--brand-accent-orange);
    color: var(--brand-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(58, 58, 58, 0.2);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    text-align: center;
    color:#a3a3ab;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge-icon{
    opacity: 0.6;
}

/* Testimonials */
.testimonials {
    background: var(--brand-bg-light);
    padding: 5rem 0;
}

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

.testimonial {
    background: var(--brand-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.07);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--brand-bg-light);
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--brand-dark-blue);
}

.testimonial-role {
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: var(--brand-text-muted);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--brand-dark-blue);
}

.copyright {
    font-size: 0.8rem;
}

.disclaimer {
    margin-top: 2rem;
    font-size: 0.7rem;
    color: #a3a3ab;
    /*color: var(--brand-text-muted);*/
}
.disclaimer a {
    color: #a3a3ab;
}

a {
    /*color: var(--brand-accent-orange);*/
    /*text-decoration: none;*/
    color: var(--brand-text-muted);
    text-decoration: underline;

}

a:hover {
    text-decoration: underline;
    color: var(--brand-accent-orange);
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .cta-button {
        display: inline-block;
    }

    .content-section {
        padding-right: 0;
    }

    .signup-form {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 3rem 0;
    }
    .glow-3, .glow-4, .glow-6 {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr; /* Stack form row elements on smaller screens */
        gap: 0; /* Remove gap when stacked, form-group margin will handle it */
    }
}