* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #01033E 0%, #807DFE 100%);
    min-height: 100vh;
    color: white;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: white;
    color: #1e1b4b;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-nav {
    padding: 0.7rem 1.5rem;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: #01033E;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 0;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: "Sora", sans-serif;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.btn-hero {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 14px;
    color: #01033E;
    font-family: "Inter", sans-serif;
}

.hero-image-container {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    animation: float 6s ease-in-out infinite;
    display: block;
    margin-bottom: -20px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features-section {
    padding: 0 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.glass-card {
    background: #01033E;
    padding: 2rem;
    border-radius: 6px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

/* Form Section */
.form-section {
    padding: 5rem 10.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.input-field {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 0;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-bottom-color: white;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select.input-field {
    cursor: pointer;
}

select.input-field option {
    background: #1e1b4b;
}

.form-submit {
    text-align: center;
    padding-top: 2rem;
}

.btn-submit {
    padding: 0.75rem 2.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1.125rem;
    border: 1px solid #01033E;
}

.form-note {
    margin-top: 1rem;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #fff
}

.form-status {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.form-status.success {
    color: #4ade80;
}

.form-status.error {
    color: #f87171;
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    background: #01033E;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    opacity: 0.6;
}

.logo-letter {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    margin-right: 0.25rem;
}

.logo-erp {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 1.125rem;
    margin-left: 0.25rem;
}

.footer-support {
    text-align: center;
}

.support-title {
    color: #807DFE;
    font-size: 15px;
    margin-bottom: 0.5rem;
    font-family: "Sora", sans-serif;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Sora", sans-serif;
    font-size: 12px;
}

.support-link span img {
    display: block;
}

.support-link:hover {
    color: #807DFE;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #807DFE;
    font-family: "Sora", sans-serif;
}

.powered-by {
    margin-top: 0.25rem;
}

.company-name {
    color: #003AC5;
    text-decoration: none;
}

.company-name:hover {
    text-decoration: underline;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.50rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .form-title {
        font-size: 2.50rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-support {
        text-align: left;
    }

    .support-links {
        flex-direction: row;
    }

    .footer-copyright {
        text-align: right;
    }

}

@media screen and (width <=900px) {
    .form-section {
        padding: 5rem 2.5rem;
    }

    .hero-image-container {
        display: flex;
        justify-content: center;
    }

    .hero-subtitle {
        padding: 0 30px;
    }

    .hero-title {
        padding: 0 15px;
    }

    .hero-image {
        width: 90%;
    }

    .rsnone {
        display: none;
    }

    .features-section {
        padding: 0 15px;
    }
}

@media screen and (width <=765px) {
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}