@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Outfit:wght@600;700;800;900&display=swap');

:root {
    --v-red: #e32d18;
    --v-red-hover: #c42412;
    --v-red-light: #fff1f0;
    --v-dark: #111827;
    --v-slate: #374151;
    --v-muted: #6b7280;
    --v-light: #f9fafb;
    --v-border: #e5e7eb;
    --v-card-border: #eaedf1;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-float: 0 10px 25px -5px rgba(227, 45, 24, 0.4), 0 8px 10px -6px rgba(227, 45, 24, 0.2);
    --shadow-card: 0 4px 20px -2px rgba(17, 24, 39, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--v-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--v-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Top Subtle Strip (Viessmann Red Bar) */
.v-top-strip {
    background: var(--v-red);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.v-top-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

/* Header (Exact Viessmann Minimalist Navbar) */
.v-header {
    background: #ffffff;
    border-bottom: 1px solid var(--v-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.v-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 66px;
}

@media (min-width: 768px) {
    .v-navbar {
        height: 74px;
    }
}

.v-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--v-dark);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.v-logo span {
    color: var(--v-red);
}

.v-logo-flame {
    color: var(--v-red);
    font-size: 1.25rem;
}

/* Desktop Links */
.v-desktop-nav {
    display: none;
    list-style: none;
    align-items: center;
    gap: 1.75rem;
}

@media (min-width: 992px) {
    .v-desktop-nav {
        display: flex;
    }
}

.v-nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--v-dark);
    transition: color 0.2s ease;
}

.v-nav-link:hover {
    color: var(--v-red);
}

/* Viessmann Style Mobile Hamburger Menu Button */
.v-menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0.4rem;
}

.v-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.v-menu-icon span {
    display: block;
    height: 2.5px;
    background: var(--v-dark);
    border-radius: 2px;
    width: 100%;
}

.v-menu-text {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--v-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

@media (min-width: 992px) {
    .v-menu-trigger {
        display: none;
    }
}

/* Fullscreen Viessmann Style Drawer Navigation */
.v-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.v-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.v-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100%;
    background: #ffffff;
    z-index: 1999;
    padding: 1.5rem 1.5rem 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.v-drawer.open {
    right: 0;
}

.v-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--v-border);
    margin-bottom: 1.5rem;
}

.v-drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--v-dark);
    cursor: pointer;
    padding: 0.25rem;
}

/* Viessmann Large Typography Menu Links */
.v-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-bottom: 2rem;
}

.v-drawer-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--v-dark);
    display: block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.v-drawer-links a:hover {
    color: var(--v-red);
    transform: translateX(4px);
}

.v-drawer-sublinks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--v-border);
    margin-top: auto;
}

.v-drawer-sublinks a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--v-slate);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.v-drawer-sublinks a:hover {
    color: var(--v-red);
}

/* Segment Pill Toggle */
.v-segment-toggle {
    display: flex;
    background: #f3f4f6;
    padding: 0.3rem;
    border-radius: var(--radius-full);
    margin-top: 1.5rem;
}

.v-segment-btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    color: var(--v-slate);
}

.v-segment-btn.active {
    background: var(--v-dark);
    color: #ffffff;
}

/* Hero Section (Viessmann Corporate Minimalist) */
.v-hero {
    background: #ffffff;
    padding: 2.5rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--v-border);
}

@media (min-width: 768px) {
    .v-hero {
        padding: 4.5rem 0 5rem;
    }
}

.v-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.v-hero-title {
    font-size: 2.1rem;
    color: var(--v-dark);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.18;
}

@media (min-width: 768px) {
    .v-hero-title {
        font-size: 3.2rem;
    }
}

.v-hero-desc {
    font-size: 1rem;
    color: var(--v-slate);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .v-hero-desc {
        font-size: 1.15rem;
    }
}

/* Viessmann Signature Red Pill CTA Button */
.v-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--v-red);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 45, 24, 0.35);
    transition: all 0.2s ease;
}

.v-btn-pill:hover, .v-btn-pill:active {
    background: var(--v-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 45, 24, 0.45);
}

/* Geometric Minimalist Feature Icons */
.v-features-section {
    padding: 3rem 0 3.5rem;
    background: #ffffff;
    border-bottom: 1px solid var(--v-border);
}

.v-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .v-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.v-feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-feature-icon {
    font-size: 2.25rem;
    color: var(--v-dark);
    margin-bottom: 1rem;
}

.v-feature-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--v-dark);
    margin-bottom: 0.5rem;
}

.v-feature-text {
    font-size: 0.9rem;
    color: var(--v-muted);
    line-height: 1.5;
}

/* 🔍 INTERACTIVE KOMBI FAULT CODE FINDER & DIAGNOSTIC TOOL */
.v-diagnostic-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--v-border);
}

.v-diagnostic-card {
    background: #ffffff;
    border: 1.5px solid var(--v-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.v-diagnostic-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.v-diagnostic-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--v-red-light);
    color: var(--v-red);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
    border: 1px solid #fed7d7;
}

.v-diagnostic-header h2 {
    font-size: 1.6rem;
    color: var(--v-dark);
    margin-bottom: 0.4rem;
}

.v-diagnostic-header p {
    font-size: 0.9rem;
    color: var(--v-muted);
}

.v-diagnostic-selectors {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .v-diagnostic-selectors {
        grid-template-columns: 1fr 1fr;
    }
}

.v-diag-select-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.v-diag-select-wrap label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--v-slate);
}

.v-diag-select {
    width: 100%;
    height: 50px;
    padding: 0 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--v-dark);
    background: #ffffff;
    border: 1.5px solid var(--v-border);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.v-diag-select:focus {
    border-color: var(--v-red);
    box-shadow: 0 0 0 3px rgba(227, 45, 24, 0.15);
}

/* Diagnostic Result Box */
.v-diag-result {
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInDiag 0.3s ease;
}

@keyframes fadeInDiag {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.v-diag-result.active {
    display: flex;
}

.v-diag-result-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--v-border);
}

.v-diag-code-badge {
    background: var(--v-red);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
}

.v-diag-code-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--v-dark);
}

.v-diag-desc-block {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.v-diag-desc-item {
    font-size: 0.9rem;
    color: var(--v-slate);
    line-height: 1.55;
}

.v-diag-desc-item strong {
    color: var(--v-dark);
}

.v-diag-action-btn {
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease;
}

.v-diag-action-btn:hover {
    transform: translateY(-2px);
}

/* Section Common */
.v-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .v-section {
        padding: 4.5rem 0;
    }
}

.v-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.v-section-title {
    font-size: 1.75rem;
    color: var(--v-dark);
    margin-bottom: 0.6rem;
}

@media (min-width: 768px) {
    .v-section-title {
        font-size: 2.25rem;
    }
}

.v-section-subtitle {
    font-size: 0.95rem;
    color: var(--v-muted);
}

/* Brand Grid (Viessmann Corporate Minimalist Cards) */
.v-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

@media (min-width: 768px) {
    .v-brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 992px) {
    .v-brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.v-brand-card {
    background: #ffffff;
    border: 1px solid var(--v-card-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
}

.v-brand-card:hover, .v-brand-card:active {
    border-color: var(--v-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.v-brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--v-light);
    color: var(--v-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
}

.v-brand-card h4 {
    font-size: 1.05rem;
    color: var(--v-dark);
    margin-bottom: 0.35rem;
}

.v-brand-card p {
    font-size: 0.78rem;
    color: var(--v-muted);
    line-height: 1.45;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v-brand-btn {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--v-red);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Services Minimalist List */
.v-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .v-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .v-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.v-service-card {
    background: #ffffff;
    border: 1px solid var(--v-card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.v-service-card:hover {
    border-color: var(--v-dark);
    box-shadow: var(--shadow-card);
}

.v-service-icon {
    font-size: 1.6rem;
    color: var(--v-red);
    margin-bottom: 1rem;
}

.v-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.v-service-card p {
    font-size: 0.88rem;
    color: var(--v-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.v-service-card a {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--v-red);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Districts Grid */
.v-districts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

@media (min-width: 768px) {
    .v-districts-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.85rem;
    }
}

.v-district-pill {
    background: #ffffff;
    border: 1px solid var(--v-border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--v-dark);
    transition: all 0.2s ease;
}

.v-district-pill:hover, .v-district-pill:active {
    border-color: var(--v-red);
    color: var(--v-red);
    background: var(--v-red-light);
}

/* Lead Form Section (Viessmann Clean Box) */
.v-form-card {
    background: #ffffff;
    border: 1px solid var(--v-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.v-form-card h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 0.4rem;
}

.v-form-card p {
    font-size: 0.88rem;
    color: var(--v-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.v-form-group {
    margin-bottom: 0.85rem;
}

.v-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--v-slate);
    margin-bottom: 0.35rem;
}

.v-form-input, .v-form-select {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--v-dark);
    background: #ffffff;
    border: 1.5px solid var(--v-border);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.2s ease;
}

.v-form-input:focus, .v-form-select:focus {
    border-color: var(--v-red);
}

/* FAQ Clean */
.v-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.v-faq-item {
    background: #ffffff;
    border: 1px solid var(--v-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.v-faq-question {
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--v-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.v-faq-question i {
    font-size: 0.85rem;
    color: var(--v-muted);
    transition: transform 0.2s ease;
}

.v-faq-item.active .v-faq-question i {
    transform: rotate(180deg);
    color: var(--v-red);
}

.v-faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.v-faq-item.active .v-faq-answer {
    padding: 0 1.25rem 1.1rem;
    max-height: 400px;
}

.v-faq-answer p {
    font-size: 0.88rem;
    color: var(--v-slate);
    line-height: 1.6;
}

/* Footer (Viessmann Corporate Dark) */
.v-footer {
    background: var(--v-dark);
    color: #9ca3af;
    padding: 3.5rem 0 2rem;
    font-size: 0.85rem;
}

.v-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .v-footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

.v-footer h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.v-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.v-footer-links a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.v-footer-links a:hover {
    color: #ffffff;
}

.v-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.78rem;
    color: #6b7280;
}

/* Floating Viessmann Action Widget (Exact Bottom Right Red Button) */
.v-float-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--v-red);
    color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-float);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1990;
    border: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.v-float-widget:active {
    transform: scale(0.92);
}

/* Popup Action Modal for Calling / WhatsApp */
.v-action-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

@media (min-width: 576px) {
    .v-action-modal-backdrop {
        align-items: center;
    }
}

.v-action-modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.v-action-modal {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 20px 20px 0 0;
    padding: 1.75rem 1.25rem 2rem;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 576px) {
    .v-action-modal {
        border-radius: 20px;
        transform: scale(0.95);
        padding: 2rem;
    }
}

.v-action-modal-backdrop.open .v-action-modal {
    transform: translateY(0);
}

@media (min-width: 576px) {
    .v-action-modal-backdrop.open .v-action-modal {
        transform: scale(1);
    }
}

.v-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.v-modal-header h3 {
    font-size: 1.3rem;
    color: var(--v-dark);
    margin-bottom: 0.35rem;
}

.v-modal-header p {
    font-size: 0.85rem;
    color: var(--v-muted);
}

.v-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.v-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    height: 52px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.v-modal-btn-call {
    background: var(--v-red);
}

.v-modal-btn-whatsapp {
    background: var(--whatsapp);
}

.v-modal-cancel {
    margin-top: 0.75rem;
    background: none;
    border: none;
    width: 100%;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--v-muted);
    cursor: pointer;
}
