
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #f3f2ff 0%, #e9e7ff 100%);
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px;
    margin: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(111,92,255,0.08);
    backdrop-filter: blur(10px);
}

.logo,
.logo:visited,
.logo:hover,
.logo:active {
    display: inline-block;
    text-decoration: none;
    color: #6f5cff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 8px 14px;
    border-radius: 999px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 14px;
    transition: 0.2s ease;
}

.nav-links a:hover {
    background: #ecebff;
    color: #5f4cf0;
}

.nav-links a.cta {
    background: linear-gradient(90deg, #8b7cff, #a89bff);
    color: white;
    box-shadow: 0 8px 20px rgba(139,124,255,0.25);
}

.hero {
    text-align: center;
    padding: 72px 20px 28px;
}

.hero h1 {
    font-size: 46px;
    line-height: 1.05;
    margin: 0 0 14px;
    color: #332b66;
}

.hero p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}

.hero img {
    width: 100%;
    max-width: 560px;
    margin-top: 38px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(69, 55, 140, 0.14);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.section {
    max-width: 1060px;
    margin: 72px auto;
    padding: 0 20px;
}

.section h2 {
    color: #6f5cff;
    font-size: 30px;
    margin-bottom: 14px;
}

.section p {
    line-height: 1.75;
    color: #555;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.service-box {
    background: rgba(255,255,255,0.88);
    padding: 24px;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.7);
}

.service-box .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eeeaff, #ddd6ff);
    color: #6f5cff;
    font-size: 22px;
    margin-bottom: 14px;
}

.card {
    background: rgba(255,255,255,0.9);
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8);
}

.contact-meta {
    margin-bottom: 18px;
    color: #555;
}

.contact-meta p {
    margin: 6px 0;
}

.form-shell {
    margin-top: 18px;
}

form input, form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 15px;
    margin-bottom: 12px;
    border-radius: 14px;
    border: 1px solid #ddd7ff;
    background: #fcfbff;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: 0.2s ease;
}

form input:focus, form textarea:focus {
    border-color: #9b8cff;
    box-shadow: 0 0 0 4px rgba(139,124,255,0.10);
}

form textarea {
    min-height: 140px;
    resize: vertical;
}

.captcha-note {
    display: inline-block;
    margin: 10px 0 16px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #efeaff;
    color: #6956ef;
    font-size: 13px;
}

.send-wrap {
    margin-top: 16px;
}

.send-button {
    display: none;
    padding: 13px 22px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #8b7cff, #a89bff);
    color: white;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(139,124,255,0.28);

    opacity: 0.6;
    pointer-events: none;
}

.send-button.ready {
    display: inline-block;
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.send-button.ready:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(139,124,255,0.35);
}

.success-box {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;

    background: linear-gradient(180deg, #f9f6ff 0%, #f1edff 100%);
    border: 1px solid #ddd7ff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(111,92,255,0.08);
}

.success-box.show {
    display: block;
    opacity: 1;
}

.success-badge {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #dff8e8, #c8f0d8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 14px;
}

.success-box h3 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #3b2f78;
}

.success-box p {
    margin: 0 0 12px;
    color: #555;
    line-height: 1.7;
}

.success-box a {
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
    color: #6f5cff;
    font-weight: 600;
}

.footer {
    text-align: center;
    padding: 42px 20px 56px;
    color: #888;
    line-height: 1.9;
}

.footer a {
    margin: 0 8px;
    color: #6f5cff;
    text-decoration: none;
}

.floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(90deg, #8b7cff, #a89bff);
    color: white;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(139,124,255,0.36);
    
}


@media (max-width: 840px) {
    .navbar {
        flex-direction: column;
        gap: 12px;
        border-radius: 24px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 38px;
    }
}