:root {
    --primary: #514fc4;
    --primary-dark: #2f2b82;
    --primary-light: #f0efff;
    --accent: #c00000;
    --text: #202033;
    --muted: #66667a;
    --white: #ffffff;
    --light: #f7f7fb;
    --border: #ddddf0;
    --dark: #151529;
    --shadow: 0 10px 28px rgba(31, 31, 46, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrap img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.logo-text strong {
    display: block;
    color: var(--primary-dark);
    font-size: 22px;
    letter-spacing: 1px;
}

.logo-text span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    font-weight: 700;
    color: var(--text);
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--border);
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.hero {
    background: linear-gradient(120deg, rgba(47, 43, 130, 0.96), rgba(81, 79, 196, 0.90));
    color: var(--white);
    padding: 95px 0;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.section {
    padding: 70px 0;
}

.section-light {
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: var(--primary-dark);
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 10px;
}

.section-title p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
}

.page-banner {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 60px 0;
}

.page-banner h1 {
    margin: 0 0 10px;
    font-size: clamp(32px, 4vw, 50px);
}

.page-banner p {
    margin: 0;
    max-width: 760px;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.card h3 {
    margin-top: 0;
    color: var(--primary-dark);
}

.card p {
    color: var(--muted);
}

.price {
    color: var(--accent);
    font-weight: 800;
    font-size: 22px;
    margin: 10px 0 18px;
}

.badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.content h2 {
    color: var(--primary-dark);
    margin-top: 32px;
}

.content h2:first-child {
    margin-top: 0;
}

.content ul {
    padding-left: 22px;
}

.form-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.form-box h3 {
    margin-top: 0;
    color: var(--primary-dark);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    padding: 13px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.hidden-field {
    display: none;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.contact-list li {
    margin-bottom: 12px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #25d366;
    color: var(--white);
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: var(--shadow);
    z-index: 1200;
}

.whatsapp-float:hover {
    background: #1fb257;
}

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 48px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 28px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 12px;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
}

.site-footer p,
.site-footer li {
    color: #d7d7ef;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 18px;
    text-align: center;
    color: #d7d7ef;
    font-size: 14px;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 86px;
        left: 0;
        width: 100%;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 18px 4%;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav.open {
        display: flex;
    }

    .grid-2,
    .grid-3,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 75px 0;
    }
}

@media (max-width: 520px) {
    .logo-wrap img {
        width: 56px;
        height: 56px;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .header-inner {
        min-height: 74px;
    }

    .nav {
        top: 74px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 15px;
        font-size: 14px;
    }
}
.floating-contact-buttons {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1200;
}

.call-float,
.whatsapp-float {
    position: static;
    display: inline-block;
    color: var(--white);
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: var(--shadow);
    text-align: center;
}

.call-float {
    background: var(--primary);
}

.call-float:hover {
    background: var(--primary-dark);
}

.whatsapp-float {
    background: #25d366;
}

.whatsapp-float:hover {
    background: #1fb257;
}

@media (max-width: 520px) {
    .floating-contact-buttons {
        right: 14px;
        bottom: 14px;
    }

    .call-float,
    .whatsapp-float {
        padding: 12px 15px;
        font-size: 14px;
    }
}