:root {
    --agilize-purple: #6131b4;
    --agilize-green: #00ffa3;
    --agilize-text: #333;
    --agilize-white: #ffffff;
    --agilize-bg-light: #f8f9fa;
    --agilize-gray: #666;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--agilize-text);
    line-height: 1.6;
    background-color: var(--agilize-white);
}

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

/* Navbar */
.navbar {
    background: var(--agilize-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a, .dropdown span {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    text-decoration: none;
    color: var(--agilize-purple);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: #f5f5f5;
}

/* Hero Section */
.hero {
    background: var(--agilize-purple);
    color: var(--agilize-white);
    padding: 100px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.hero-features li::before {
    content: '✓';
    color: var(--agilize-green);
    font-weight: bold;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.btn-primary {
    background: var(--agilize-green);
    color: var(--agilize-purple);
    border: none;
    padding: 18px 36px;
    border-radius: 35px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,255,163,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--agilize-white);
    border: 2px solid var(--agilize-white);
    padding: 18px 36px;
    border-radius: 35px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.hero-disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
}

/* Trust Bar */
.trust-bar {
    padding: 80px 0;
    background: #fdfbff;
}

.trust-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--agilize-purple);
    margin-bottom: 40px;
}

.trust-cards {
    display: flex;
    justify-content: center;
}

.trust-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 600px;
}

.trust-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

/* Benefits */
.benefits {
    padding: 100px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: var(--agilize-purple);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Form Section */
.contact-form-section {
    background: #f7f4fc;
    padding: 100px 0;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: var(--agilize-purple);
}

.form-wrapper {
    display: flex;
    justify-content: center;
}

.form-container {
    background: #fff;
    width: 100%;
    max-width: 550px;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.form-container h3 {
    font-size: 24px;
    margin-bottom: 35px;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    background: #fafafa;
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: #2d1a4d;
    color: var(--agilize-white);
    padding: 100px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand img {
    height: 35px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.8;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links h4 {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

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

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--agilize-white);
    text-decoration: none;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-features li {
        justify-content: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-links-group {
        grid-template-columns: 1fr 1fr;
    }
}
