:root {
    --vp-navy: #071f3d;
    --vp-blue: #0f4c81;
    --vp-orange: #f59e0b;
    --vp-bg: #f5f8fc;
    --vp-white: #ffffff;
    --vp-text: #1f2937;
    --vp-muted: #64748b;
    --vp-border: #dbe4ef;
    --vp-shadow: 0 18px 45px rgba(7, 31, 61, 0.12);
    --vp-radius: 24px;
}

* {
    box-sizing: border-box;
}

.vp-page {
    background: var(--vp-bg);
    color: var(--vp-text);
    overflow: hidden;
}

.vp-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.vp-hero {
    padding: 72px 0 54px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34%),
        linear-gradient(135deg, #071f3d 0%, #0f4c81 100%);
    color: #fff;
}

.vp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.vp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.14);
    color: var(--vp-orange);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.2px;
}

.vp-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -1.6px;
}

.vp-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.75;
}

.vp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.vp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 14px;
    border: 0;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.vp-btn-primary {
    background: var(--vp-orange);
    color: #111827;
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.28);
}

.vp-btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.vp-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.vp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vp-full {
    width: 100%;
}

.vp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
}

.vp-stats div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.vp-stats strong {
    display: block;
    font-size: 24px;
    color: #fff;
}

.vp-stats span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.vp-hero-image {
    position: relative;
}

.vp-hero-image img,
.vp-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--vp-radius);
    box-shadow: var(--vp-shadow);
}

.vp-tool-section,
.vp-content-section,
.vp-services,
.vp-form-section {
    padding: 72px 0;
}

.vp-section-head {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.vp-section-head h2,
.vp-content-grid h2,
.vp-form-grid h2 {
    margin: 14px 0 12px;
    color: var(--vp-navy);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.14;
    letter-spacing: -0.8px;
}

.vp-section-head p,
.vp-content-grid p,
.vp-form-grid p {
    color: var(--vp-muted);
    font-size: 17px;
    line-height: 1.75;
}

.vp-calculator {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.vp-form,
.vp-result,
.vp-contact-form,
.vp-card,
.vp-image-card {
    background: var(--vp-white);
    border: 1px solid var(--vp-border);
    border-radius: var(--vp-radius);
    box-shadow: var(--vp-shadow);
}

.vp-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 24px;
}

.vp-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vp-field label {
    font-weight: 900;
    color: var(--vp-navy);
    font-size: 14px;
}

.vp-field input,
.vp-contact-form input,
.vp-contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--vp-border);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: var(--vp-text);
}

.vp-field input:focus,
.vp-contact-form input:focus,
.vp-contact-form textarea:focus {
    border-color: var(--vp-blue);
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
}

.vp-field small {
    color: var(--vp-muted);
    font-size: 12px;
    line-height: 1.4;
}

.vp-form .vp-btn {
    grid-column: 1 / -1;
}

.vp-result {
    position: sticky;
    top: 20px;
    padding: 26px;
}

.vp-result-label {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.1);
    color: var(--vp-blue);
    font-weight: 900;
    font-size: 12px;
}

.vp-result h3 {
    margin: 16px 0 10px;
    color: var(--vp-navy);
    font-size: 28px;
    line-height: 1.2;
}

.vp-result p {
    color: var(--vp-muted);
    line-height: 1.7;
}

.vp-result-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 18px 0;
}

.vp-result-list div {
    padding: 15px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--vp-border);
}

.vp-result-list strong {
    display: block;
    color: var(--vp-navy);
    font-size: 24px;
}

.vp-result-list span {
    display: block;
    margin-top: 4px;
    color: var(--vp-muted);
    font-size: 12px;
    line-height: 1.35;
}

.vp-result-note {
    padding: 14px;
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.12);
    color: #7c4a03 !important;
    font-weight: 700;
}

.vp-result-small {
    font-size: 13px;
}

.vp-content-grid,
.vp-form-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.vp-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.vp-card {
    padding: 24px;
}

.vp-card h3 {
    margin: 0 0 10px;
    color: var(--vp-navy);
    font-size: 20px;
}

.vp-card p {
    margin: 0;
    color: var(--vp-muted);
    line-height: 1.65;
}

.vp-form-section {
    background: linear-gradient(135deg, #071f3d 0%, #0f4c81 100%);
}

.vp-form-section h2 {
    color: #fff;
}

.vp-form-section p {
    color: rgba(255, 255, 255, 0.78);
}

.vp-contact-form {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.vp-contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.vp-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(34, 197, 94, 0.28);
}

@media (max-width: 980px) {
    .vp-hero-grid,
    .vp-calculator,
    .vp-content-grid,
    .vp-form-grid {
        grid-template-columns: 1fr;
    }

    .vp-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-result {
        position: static;
    }
}

@media (max-width: 640px) {
    .vp-container {
        width: min(100% - 24px, 1180px);
    }

    .vp-hero {
        padding: 42px 0 36px;
    }

    .vp-hero h1 {
        font-size: 38px;
    }

    .vp-hero p {
        font-size: 16px;
    }

    .vp-hero-actions {
        flex-direction: column;
    }

    .vp-btn {
        width: 100%;
    }

    .vp-stats,
    .vp-form,
    .vp-result-list,
    .vp-card-grid {
        grid-template-columns: 1fr;
    }

    .vp-tool-section,
    .vp-content-section,
    .vp-services,
    .vp-form-section {
        padding: 48px 0;
    }

    .vp-form,
    .vp-result,
    .vp-contact-form,
    .vp-card {
        border-radius: 20px;
        padding: 18px;
    }

    .vp-whatsapp {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }
}









.vp-faq {
    padding: 72px 0;
    background: #ffffff;
}

.vp-faq-list {
    display: grid;
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.vp-faq-list details {
    background: #f8fafc;
    border: 1px solid var(--vp-border);
    border-radius: 18px;
    padding: 20px 22px;
}

.vp-faq-list summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--vp-navy);
    font-size: 18px;
}

.vp-faq-list p {
    margin: 14px 0 0;
    color: var(--vp-muted);
    line-height: 1.75;
}

@media (max-width: 640px) {
    .vp-faq {
        padding: 48px 0;
    }

    .vp-faq-list details {
        padding: 18px;
    }

    .vp-faq-list summary {
        font-size: 16px;
    }
}