/* ==========================
   RESET & BASE
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #0a2540;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================
   BACKGROUND GLOW (soft mesh, Stripe-style)
========================== */

.background-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(110px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

.glow1 {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, #a4b8ff 0%, rgba(164, 184, 255, 0) 70%);
    top: -220px;
    left: -180px;
}

.glow2 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, #ffd6e8 0%, rgba(255, 214, 232, 0) 70%);
    top: 200px;
    right: -220px;
}

/* ==========================
   HEADER / NAV
========================== */

header {
    padding: 24px 0;
    position: relative;
    z-index: 10;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0a2540;
}

.logo span {
    color: #635bff;
}

.nav-btn {
    padding: 10px 22px;
    background: #0a2540;
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.2s;
}

.nav-btn:hover {
    background: #635bff;
    transform: translateY(-1px);
}

/* ==========================
   HERO
========================== */

.hero {
    padding: 64px 0 90px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(10, 37, 64, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 80px 56px;
    text-align: center;
    box-shadow: 0 30px 80px -20px rgba(10, 37, 64, 0.12);
}

.badge {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(99, 91, 255, 0.08);
    border: 1px solid rgba(99, 91, 255, 0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #635bff;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #0a2540;
}

.hero h1 span {
    background: linear-gradient(90deg, #635bff, #ff6ab4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    max-width: 620px;
    margin: 0 auto 40px;
    color: #425466;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s;
    display: inline-block;
}

.primary-btn {
    background: #635bff;
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 91, 255, 0.35);
}

.primary-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(99, 91, 255, 0.4);
}

.secondary-btn {
    border: 1px solid rgba(10, 37, 64, 0.15);
    color: #0a2540;
    background: #fff;
}

.secondary-btn:hover {
    background: #f6f9fc;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(10, 37, 64, 0.08);
    padding-top: 36px;
}

.hero-stats h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 4px;
}

.hero-stats p {
    color: #6b7c93;
    font-size: 0.85rem;
}

/* ==========================
   SECTION GENERAL
========================== */

.section {
    padding: 110px 0;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
    color: #0a2540;
}

/* ==========================
   FEATURES
========================== */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    padding: 42px 36px;
    border-radius: 16px;
    transition: .3s;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.04);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 91, 255, 0.35);
    box-shadow: 0 20px 40px -12px rgba(10, 37, 64, 0.15);
}

.feature-card .icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    background: rgba(99, 91, 255, 0.08);
    border-radius: 12px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a2540;
}

.feature-card p {
    color: #5a6b85;
    line-height: 1.75;
    font-size: 0.98rem;
}

/* ==========================
   QUOTE SECTION
========================== */

.quote-section {
    padding: 40px 0 100px;
}

.quote-box {
    text-align: center;
    padding: 56px 40px;
    background: #f6f9fc;
    border-radius: 20px;
    border: 1px solid rgba(10, 37, 64, 0.06);
}

.quote-box h2 {
    font-size: 1.7rem;
    font-weight: 700;
    font-style: italic;
    color: #0a2540;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==========================
   CONTACT
========================== */

.contact {
    padding: 40px 0 130px;
}

.contact-card {
    max-width: 560px;
    margin: 0 auto;
}

.contact-card h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0a2540;
}

.contact-card > p {
    color: #425466;
    margin-bottom: 36px;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

#contactForm input,
#contactForm textarea {
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #0a2540;
    outline: none;
    transition: 0.2s;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: #8792a2;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #635bff;
    box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.12);
}

#contactForm textarea {
    min-height: 120px;
    resize: vertical;
}

#contactForm button {
    background: #635bff;
    color: #fff;
    border: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 8px 24px rgba(99, 91, 255, 0.3);
}

#contactForm button:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

#contactForm button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    min-height: 20px;
    font-size: 0.9rem;
}

/* ==========================
   FOOTER
========================== */

footer {
    padding: 32px 0 40px;
    text-align: center;
    color: #8792a2;
    font-size: 0.85rem;
    border-top: 1px solid rgba(10, 37, 64, 0.06);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.3rem;
    }

    .glass-card {
        padding: 56px 26px;
    }

    .hero-stats {
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .quote-box h2 {
        font-size: 1.3rem;
    }

    .section {
        padding: 80px 0;
    }
}