/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-color: #1071a1;
    --secondary-color: #3293b7;
    --success-color: #96c322;
    --warning-color: #f39333;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --white-color: #ffffff;
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --border-radius: 0.375rem;
    --transition: all 0.3s ease;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 700;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
}

/* ===== BOTÕES ===== */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

/* ===== BOTÕES CUSTOMIZADOS ===== */
.btn-primary {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: var(--white-color) !important;
}

.btn-primary:hover {
    background-color: #e0852e !important;
    border-color: #e0852e !important;
    color: var(--white-color) !important;
}

.btn-outline-primary {
    background-color: transparent !important;
    border-color: var(--warning-color) !important;
    color: var(--warning-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: var(--white-color) !important;
}

/* ===== OUTROS BOTÕES CTA ===== */
.btn-success {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: var(--white-color) !important;
}

.btn-success:hover {
    background-color: #e0852e !important;
    border-color: #e0852e !important;
    color: var(--white-color) !important;
}

.btn-outline-success {
    background-color: transparent !important;
    border-color: var(--warning-color) !important;
    color: var(--warning-color) !important;
}

.btn-outline-success:hover {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: var(--white-color) !important;
}

/* ===== BOTÕES DE NAVEGAÇÃO ===== */
.navbar .btn-primary {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: var(--white-color) !important;
}

.navbar .btn-primary:hover {
    background-color: #e0852e !important;
    border-color: #e0852e !important;
    color: var(--white-color) !important;
}

/* ===== BOTÕES DARK ===== */
.btn-dark {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: var(--white-color) !important;
}

.btn-dark:hover {
    background-color: #e0852e !important;
    border-color: #e0852e !important;
    color: var(--white-color) !important;
}

.btn-outline-dark {
    background-color: transparent !important;
    border-color: var(--warning-color) !important;
    color: var(--warning-color) !important;
}

.btn-outline-dark:hover {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: var(--white-color) !important;
}

/* ===== BOTÕES LIGHT ===== */
.btn-light {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: var(--white-color) !important;
}

.btn-light:hover {
    background-color: #e0852e !important;
    border-color: #e0852e !important;
    color: var(--white-color) !important;
}

.btn-outline-light {
    background-color: transparent !important;
    border-color: var(--white-color) !important;
    color: var(--white-color) !important;
}

.btn-outline-light:hover {
    background-color: var(--white-color) !important;
    border-color: var(--white-color) !important;
    color: var(--primary-color) !important;
}

/* ===== CARDS ===== */
.card {
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 2rem;
}

/* ===== NAVBAR ===== */
.navbar {
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ===== HERO CAROUSEL ===== */
.hero-slide {
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ===== SEÇÕES ===== */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--light-color) !important;
}

/* ===== ABOUT SECTION ===== */
.about-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== TIMELINE ===== */
.timeline-marker {
    min-width: 20px;
    height: 20px;
    margin-top: 0.25rem;
}

/* ===== PROCESS STEPS ===== */
.step-number {
    min-width: 40px;
    height: 40px;
    font-weight: 700;
    font-size: 1.125rem;
}

/* ===== PRICING ===== */
.price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-tag .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-tag .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-color);
}

.popular-badge {
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

/* ===== PLANOS (listas / comparativo) ===== */
.plan-feature {
    font-size: 0.875rem;
    line-height: 1.45;
}

.plan-feature.plus {
    color: var(--dark-color);
    font-weight: 600;
}

.plan-feature.plus i {
    color: var(--primary-color);
}

/* ===== PLANOS — cards modernos (planos.html) ===== */
.section-planos-pricing {
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 50%, #f4f7fb 100%);
    position: relative;
}

.section-planos-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 113, 161, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.section-planos-pricing .container {
    position: relative;
    z-index: 1;
}

.plan-section-heading .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.plan-card-modern {
    --plan-accent: var(--primary-color);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white-color);
    border-radius: 1rem;
    border: 1px solid rgba(16, 113, 161, 0.1);
    box-shadow:
        0 1px 2px rgba(16, 24, 40, 0.04),
        0 8px 24px rgba(16, 113, 161, 0.06);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.25s ease;
}

.plan-card-modern:hover {
    transform: translateY(-6px);
    box-shadow:
        0 4px 8px rgba(16, 24, 40, 0.06),
        0 20px 40px rgba(16, 113, 161, 0.12);
    border-color: rgba(16, 113, 161, 0.22);
}

.plan-card-modern__accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--plan-accent, var(--primary-color)), var(--secondary-color));
    opacity: 0.95;
}

.plan-card-modern--featured {
    --plan-accent: var(--warning-color);
    border-color: rgba(243, 147, 51, 0.35);
    box-shadow:
        0 4px 12px rgba(243, 147, 51, 0.12),
        0 16px 40px rgba(16, 113, 161, 0.1);
}

.plan-card-modern--featured:hover {
    border-color: rgba(243, 147, 51, 0.5);
    box-shadow:
        0 8px 16px rgba(243, 147, 51, 0.15),
        0 24px 48px rgba(16, 113, 161, 0.14);
}

.plan-card-modern__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f39333, #e07d1f);
    color: var(--white-color);
    box-shadow: 0 2px 8px rgba(243, 147, 51, 0.4);
}

.plan-card-modern__inner {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plan-card-modern__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--plan-accent);
    background: linear-gradient(145deg, rgba(16, 113, 161, 0.1), rgba(50, 147, 183, 0.08));
    margin-bottom: 1rem;
}

.plan-card-modern--featured .plan-card-modern__icon {
    background: linear-gradient(145deg, rgba(243, 147, 51, 0.15), rgba(16, 113, 161, 0.08));
}

.plan-card-modern__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.plan-card-modern__desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6570;
    margin-bottom: 1.25rem;
    flex-grow: 0;
}

.plan-card-modern__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, rgba(16, 113, 161, 0.06), rgba(50, 147, 183, 0.04));
    border: 1px solid rgba(16, 113, 161, 0.1);
}

.plan-card-modern--featured .plan-card-modern__price {
    background: linear-gradient(135deg, rgba(243, 147, 51, 0.1), rgba(16, 113, 161, 0.05));
    border-color: rgba(243, 147, 51, 0.2);
}

.plan-card-modern__price-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.plan-card-modern__price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-card-modern__cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.plan-card-modern__cta .btn {
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
}

.plan-card-modern__cta .btn-primary {
    box-shadow: 0 2px 8px rgba(243, 147, 51, 0.25);
}

.plan-card-modern__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 113, 161, 0.15), transparent);
    margin-bottom: 1rem;
}

.plan-card-modern__includes {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.65rem;
}

.plan-card-modern__features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.plan-card-modern__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(16, 113, 161, 0.06);
    color: #3d454c;
}

.plan-card-modern__features li:last-child {
    border-bottom: none;
}

.plan-card-modern__features .bi-check-circle-fill {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 0.95rem;
    color: #2d9f5e;
}

.plan-card-modern__features .bi-plus-circle-fill {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.plan-card-modern__features strong {
    font-weight: 600;
    color: var(--dark-color);
}

@media (max-width: 991.98px) {
    .plan-card-modern--featured {
        margin-top: 0;
    }
}

/* ===== ACCORDION ===== */
.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* ===== TABLE ===== */
.table {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.table th {
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.table td {
    vertical-align: middle;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: var(--white-color) !important;
}

footer p, footer span, footer a {
    color: var(--white-color) !important;
}

footer a:hover {
    color: var(--warning-color) !important;
}

/* ===== SOBRESCREVER CLASSES BOOTSTRAP NO FOOTER ===== */
footer .text-white-50 {
    color: var(--white-color) !important;
}

footer .text-white-50:hover {
    color: var(--warning-color) !important;
}

footer .text-decoration-none {
    text-decoration: none !important;
}

footer .text-decoration-none:hover {
    text-decoration: underline !important;
}

.social-links a {
    transition: var(--transition);
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-color) !important;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #0f5132;
    color: var(--white-color);
    transform: scale(1.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

/* ===== FORMULÁRIOS ===== */
.form-control,
.form-select {
    border-radius: var(--border-radius);
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== ANIMAÇÕES ===== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 400px;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .price-tag {
        font-size: 2rem;
    }
    
    .price-tag .currency {
        font-size: 1.25rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .about-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 350px;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .price-tag {
        font-size: 1.75rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* ===== UTILITÁRIOS ===== */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-danger { color: var(--danger-color) !important; }
.text-info { color: var(--info-color) !important; }
.text-light { color: var(--light-color) !important; }
.text-dark { color: var(--dark-color) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-success { background-color: var(--success-color) !important; }
.bg-warning { background-color: var(--warning-color) !important; }
.bg-danger { background-color: var(--danger-color) !important; }
.bg-info { background-color: var(--info-color) !important; }
.bg-light { background-color: var(--light-color) !important; }
.bg-dark { background-color: var(--dark-color) !important; }

.shadow-sm { box-shadow: var(--shadow) !important; }
.shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

.rounded { border-radius: var(--border-radius) !important; }
.rounded-circle { border-radius: 50% !important; }

/* ===== LOADING ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SCROLL SMOOTH ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION ===== */
::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white-color);
} 
.hero-section{background-color:#1071a1;}

/* ===== HOME PAGE ===== */
body.home-page {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.home-page.home-header-menu-open {
    overflow: hidden;
}

/* ===== HOME HEADER ===== */
.home-header {
    --home-nav-height: 72px;
    --home-announce-height: 42px;
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: box-shadow 0.35s ease;
}

.home-header.is-scrolled {
    box-shadow: 0 8px 32px rgba(6, 30, 46, 0.12);
}

.home-header.is-announce-hidden {
    --home-announce-height: 0px;
}

.home-header.is-announce-hidden .home-header__announce {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
    border: none;
}

.home-header__announce {
    background: linear-gradient(90deg, #0a4d6e 0%, var(--primary-color) 50%, #0d5f87 100%);
    color: var(--white-color);
    font-size: 0.78rem;
    font-weight: 500;
    max-height: 42px;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.home-header__announce-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 36px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.home-header__announce-track {
    position: relative;
    flex: 1;
    min-height: 1.25rem;
    overflow: hidden;
}

.home-header__announce-item {
    position: absolute;
    left: 0;
    top: 50%;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.home-header__announce-item.is-active {
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: auto;
}

.home-header__announce-item i {
    color: var(--warning-color);
    font-size: 0.85rem;
}

.home-header__announce-contact {
    display: none;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.home-header__announce-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-header__announce-contact a:hover {
    color: var(--white-color);
}

.home-header__announce-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.25);
}

.home-header__nav {
    position: relative;
    z-index: 2;
    background: rgba(6, 30, 46, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.35s ease, border-color 0.35s ease;
}

.home-header:not(.is-scrolled):not(.is-menu-open) .home-header__nav {
    margin-bottom: calc(-1 * var(--home-nav-height));
}

.home-header.is-scrolled .home-header__nav,
.home-header.is-menu-open .home-header__nav {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(16, 113, 161, 0.08);
}

.home-header__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 72px;
}

.home-header__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

@media (min-width: 1200px) {
    .home-header__brand {
        margin-right: 1rem;
    }
}

.home-header__brand:hover {
    transform: scale(1.02);
}

.home-header__brand img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.35s ease;
}

.home-header.is-scrolled .home-header__brand img,
.home-header.is-menu-open .home-header__brand img {
    filter: none;
}

.home-header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    position: relative;
    z-index: 1041;
    flex-shrink: 0;
    margin-left: auto;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.home-header.is-scrolled .home-header__toggle,
.home-header.is-menu-open .home-header__toggle {
    border-color: rgba(16, 113, 161, 0.15);
    background: rgba(16, 113, 161, 0.06);
}

.home-header__toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.35s ease;
}

.home-header.is-scrolled .home-header__toggle-bar,
.home-header.is-menu-open .home-header__toggle-bar {
    background: var(--primary-color);
}

.home-header.is-menu-open .home-header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.home-header.is-menu-open .home-header__toggle-bar:nth-child(2) {
    opacity: 0;
}

.home-header.is-menu-open .home-header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.home-header__menu {
    display: none;
}

.home-header__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.home-header__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.55rem 0.85rem;
    border: none;
    border-radius: 0.55rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease;
    font-family: inherit;
}

.home-header.is-scrolled .home-header__link,
.home-header.is-menu-open .home-header__link {
    color: #1e3a4f;
}

.home-header__link:hover,
.home-header__link.is-active {
    color: var(--primary-color);
    background: rgba(16, 113, 161, 0.08);
}

.home-header.is-scrolled .home-header__link:hover,
.home-header.is-scrolled .home-header__link.is-active,
.home-header.is-menu-open .home-header__link:hover,
.home-header.is-menu-open .home-header__link.is-active {
    background: rgba(16, 113, 161, 0.1);
}

.home-header__chevron {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

.home-header__item--dropdown.is-open .home-header__chevron {
    transform: rotate(180deg);
}

.home-header__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    min-width: 340px;
    padding: 0.75rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(6, 30, 46, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20;
}

.home-header__item--dropdown {
    position: relative;
}

.home-header__item--dropdown.is-open .home-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.home-header__dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
}

.home-header__dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.7rem 0.75rem;
    border-radius: 0.65rem;
    text-decoration: none;
    color: #1e3a4f;
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-header__dropdown-link:hover {
    background: rgba(16, 113, 161, 0.07);
    transform: translateX(2px);
    color: var(--primary-color);
}

.home-header__dropdown-link strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-header__dropdown-link small {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 0.1rem;
    line-height: 1.35;
}

.home-header__dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 0.55rem;
    background: rgba(16, 113, 161, 0.1);
    color: var(--primary-color);
    flex-shrink: 0;
}

.home-header__dropdown-footer {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(16, 113, 161, 0.08);
}

.home-header__dropdown-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: background 0.2s ease;
}

.home-header__dropdown-more:hover {
    background: rgba(16, 113, 161, 0.07);
    color: var(--primary-color);
}

.home-header__dropdown-more .bi-arrow-right {
    margin-left: auto;
    font-size: 0.75rem;
}

.home-header__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.home-header.is-scrolled .home-header__actions,
.home-header.is-menu-open .home-header__actions {
    border-left-color: rgba(16, 113, 161, 0.12);
}

.home-header__phone {
    display: none;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.85rem;
    border-radius: 0.65rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    transition: background 0.25s ease, color 0.25s ease;
}

.home-header.is-scrolled .home-header__phone,
.home-header.is-menu-open .home-header__phone {
    color: var(--primary-color);
}

.home-header__phone:hover {
    background: rgba(16, 113, 161, 0.08);
    color: var(--primary-color);
}

.home-header__phone i {
    font-size: 1rem;
}

.home-header__phone span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.home-header__phone small {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.8;
}

.home-header__phone strong {
    font-size: 0.82rem;
    font-weight: 700;
}

.home-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #f39333, #e07d1f);
    color: var(--white-color);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(243, 147, 51, 0.35);
    flex-shrink: 0;
    max-width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-header__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(243, 147, 51, 0.45);
    color: var(--white-color);
}

.home-header__cta i {
    font-size: 1.2rem;
}

.home-header__cta span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.home-header__cta strong {
    font-size: 0.82rem;
    font-weight: 700;
}

.home-header__cta small {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.9;
}

.home-header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 30, 46, 0.45);
    z-index: 1035;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.home-header__overlay:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 1200px) {
    .home-header__toggle {
        display: none;
    }

    .home-header__announce-contact {
        display: flex;
    }

    .home-header__menu {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
        justify-content: flex-end;
    }

    .home-header__links {
        flex-shrink: 1;
        min-width: 0;
    }

    .home-header__item--dropdown:hover .home-header__dropdown,
    .home-header__item--dropdown.is-open .home-header__dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

@media (min-width: 1200px) and (max-width: 1319.98px) {
    .home-header__link {
        padding: 0.5rem 0.6rem;
        font-size: 0.84rem;
    }

    .home-header__cta {
        padding: 0.55rem 0.8rem;
    }

    .home-header__cta small {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .home-header__announce-contact {
        display: flex;
    }
}

@media (max-width: 1199.98px) {
    .home-header__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(100%, 360px);
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        padding: 5.5rem 1.25rem 1.5rem;
        background: var(--white-color);
        box-shadow: -12px 0 40px rgba(6, 30, 46, 0.15);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: auto;
        z-index: 2;
    }

    .home-header.is-menu-open .home-header__menu {
        display: flex;
        transform: translateX(0);
        z-index: 1036;
    }

    .home-header__links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .home-header__item {
        width: 100%;
    }

    .home-header__link {
        width: 100%;
        justify-content: space-between;
        color: #1e3a4f;
        padding: 0.75rem 1rem;
    }

    .home-header__dropdown {
        position: static;
        min-width: 0;
        margin-top: 0.25rem;
        padding: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(16, 113, 161, 0.1);
        display: none;
    }

    .home-header__item--dropdown.is-open .home-header__dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .home-header__dropdown-grid {
        grid-template-columns: 1fr;
    }

    .home-header__actions {
        flex-direction: column;
        align-items: stretch;
        margin: 1.25rem 0 0;
        padding: 1.25rem 0 0;
        border-left: none;
        border-top: 1px solid rgba(16, 113, 161, 0.1);
    }

    .home-header__phone {
        display: flex;
        color: var(--primary-color);
        justify-content: center;
        padding: 0.75rem;
        border: 1px solid rgba(16, 113, 161, 0.15);
        border-radius: 0.75rem;
    }

    .home-header__cta {
        justify-content: center;
        padding: 0.85rem 1rem;
    }

    .home-header__cta span,
    .home-header__phone span {
        text-align: center;
    }

    .home-header__announce-item {
        white-space: normal;
        font-size: 0.72rem;
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-header,
    .home-header__announce,
    .home-header__announce-item,
    .home-header__nav,
    .home-header__dropdown,
    .home-header__menu,
    .home-header__toggle-bar {
        transition: none;
    }
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.section-heading {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading--left {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

/* Hero */
.home-hero {
    position: relative;
    background: #061e2e;
    color: var(--white-color);
    padding: calc(4.5rem + var(--home-nav-height, 72px)) 0 0;
    overflow: hidden;
    min-height: auto;
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

.home-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: heroOrbFloat 14s ease-in-out infinite;
}

.home-hero__orb--1 {
    width: 480px;
    height: 480px;
    background: var(--primary-color);
    top: -120px;
    right: -80px;
}

.home-hero__orb--2 {
    width: 360px;
    height: 360px;
    background: var(--secondary-color);
    bottom: 10%;
    left: -100px;
    animation-delay: -5s;
}

.home-hero__orb--3 {
    width: 280px;
    height: 280px;
    background: var(--warning-color);
    top: 40%;
    left: 35%;
    opacity: 0.25;
    animation-delay: -9s;
}

@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

/* Reveal on load */
.home-hero__reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: heroReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.08s * var(--delay, 0));
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1rem 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(12px);
    letter-spacing: 0.02em;
}

.home-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    animation: heroPulseDot 2s ease-in-out infinite;
}

@keyframes heroPulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.home-hero__title {
    font-size: clamp(2.1rem, 4.8vw, 3.35rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
}

/* Rotating word */
.home-hero__rotate {
    display: inline-block;
    position: relative;
    height: 1.12em;
    overflow: hidden;
    vertical-align: bottom;
    color: #fcd34d;
    text-shadow: 0 0 40px rgba(252, 211, 77, 0.35);
}

.home-hero__rotate-inner {
    display: flex;
    flex-direction: column;
    animation: heroWordRotate4 12s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.home-hero__rotate-inner span {
    height: 1.12em;
    line-height: 1.12em;
    display: block;
    white-space: nowrap;
}

@keyframes heroWordRotate4 {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-1.12em); }
    50%, 70% { transform: translateY(-2.24em); }
    75%, 95% { transform: translateY(-3.36em); }
    100% { transform: translateY(0); }
}

.home-hero__lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.home-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.home-hero__pills li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-hero__pills li:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.home-hero__pills li i {
    color: var(--warning-color);
    font-size: 0.9rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.home-hero__actions .btn-hero-primary,
.page-hero__actions .btn-hero-primary {
    background: linear-gradient(135deg, #f39333 0%, #e07d1f 100%);
    border: none;
    color: var(--white-color);
    font-weight: 700;
    padding: 0.9rem 1.65rem;
    border-radius: 0.6rem;
    box-shadow: 0 4px 20px rgba(243, 147, 51, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-hero__actions .btn-hero-primary:hover,
.page-hero__actions .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(243, 147, 51, 0.5);
    color: var(--white-color);
}

.home-hero__actions .btn-hero-outline,
.page-hero__actions .btn-hero-outline {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white-color);
    font-weight: 600;
    padding: 0.9rem 1.65rem;
    border-radius: 0.6rem;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-hero__actions .btn-hero-outline:hover,
.page-hero__actions .btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white-color);
    transform: translateY(-2px);
}

.home-hero__cta-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.home-hero__cta-note i {
    color: #4ade80;
}

.home-hero__social {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-hero__social-avatars {
    display: flex;
    flex-shrink: 0;
}

.home-hero__social-avatars span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid #061e2e;
    margin-left: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.home-hero__social-avatars span:first-child {
    margin-left: 0;
}

.home-hero__social-avatars span:last-child {
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.65rem;
}

.home-hero__social p {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Showcase / browser mockup */
.home-hero__showcase {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.home-hero__browser {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 32px 64px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(16, 113, 161, 0.15);
}

.home-hero__browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero__browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.home-hero__browser-dot:nth-child(1) { background: #ff5f57; }
.home-hero__browser-dot:nth-child(2) { background: #febc2e; }
.home-hero__browser-dot:nth-child(3) { background: #28c840; }

.home-hero__browser-url {
    flex: 1;
    margin-left: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.home-hero__browser-url i {
    font-size: 0.6rem;
    color: #4ade80;
}

/* Tabs */
.home-hero__tabs {
    display: flex;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: auto;
    scrollbar-width: none;
}

.home-hero__tabs::-webkit-scrollbar {
    display: none;
}

.home-hero__tab {
    flex: 1;
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 0.45rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.home-hero__tab:hover {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}

.home-hero__tab.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-hero__tab i {
    font-size: 0.85rem;
}

/* Panels */
.home-hero__panels {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #0d2d42;
}

.home-hero__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.home-hero__panel.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.home-hero__panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.home-hero__panel-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: flex-start;
}

.home-hero__metric {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: heroMetricIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero__panel.is-active .home-hero__metric {
    animation: heroMetricIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.home-hero__metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-hero__metric-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #5c6570;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-hero__metric--accent .home-hero__metric-value {
    color: var(--warning-color);
}

.home-hero__metric--whatsapp {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    background: #dcf8c6;
}

.home-hero__metric--whatsapp i {
    font-size: 1.5rem;
    color: #25d366;
}

.home-hero__metric--whatsapp .home-hero__metric-label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8rem;
    color: #1a3d2e;
}

.home-hero__metric--accent:not(.home-hero__metric--whatsapp) {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.home-hero__metric--accent i {
    font-size: 1.25rem;
    color: #2d9f5e;
}

.home-hero__metric--accent .home-hero__metric-label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.85rem;
}

/* Float cards */
.home-hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.97);
    color: var(--dark-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
    z-index: 5;
    animation: heroFloatCard 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.home-hero__float strong {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.2;
}

.home-hero__float span {
    color: #5c6570;
    font-size: 0.72rem;
}

.home-hero__float--tl {
    top: -1rem;
    left: -1.25rem;
    animation-delay: 0s;
}

.home-hero__float--br {
    bottom: 2.5rem;
    right: -1rem;
    animation-delay: -2s;
}

@keyframes heroFloatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.home-hero__float-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.home-hero__float-icon--success {
    background: rgba(45, 159, 94, 0.12);
    color: #2d9f5e;
}

.home-hero__float-icon--wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

/* Tab progress */
.home-hero__progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    margin-top: 1rem;
    overflow: hidden;
}

.home-hero__progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--warning-color), #fcd34d);
    border-radius: 999px;
    transition: width 0.1s linear;
}

/* Integrated stats strip */
.home-hero__stats {
    position: relative;
    z-index: 2;
    margin-top: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.home-hero__stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.75rem 0;
}

.home-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 120px;
}

.home-hero__stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.home-hero__stat-suffix {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--warning-color);
}

.home-hero__stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.15rem;
}

.home-hero__stat-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-color);
}

.home-hero__stat-text i {
    color: var(--warning-color);
    margin-right: 0.25rem;
}

.home-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* Stats bar (legacy, kept for other pages) */
.stats-bar {
    background: var(--white-color);
    border-bottom: 1px solid rgba(16, 113, 161, 0.1);
    padding: 2rem 0;
    margin-top: -1px;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
}

.stat-item__value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.stat-item__label {
    font-size: 0.8125rem;
    color: #5c6570;
    margin-top: 0.25rem;
}

/* Feature cards */
.feature-card {
    height: 100%;
    background: var(--white-color);
    border-radius: 1rem;
    border: 1px solid rgba(16, 113, 161, 0.1);
    padding: 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 113, 161, 0.12);
    border-color: rgba(16, 113, 161, 0.22);
}

.feature-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-color);
    background: linear-gradient(145deg, rgba(16, 113, 161, 0.1), rgba(50, 147, 183, 0.08));
    margin-bottom: 1.15rem;
}

.feature-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-card__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5c6570;
    margin: 0;
}

/* Segment cards */
.segment-card {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: var(--white-color);
    border-radius: 0.85rem;
    border: 1px solid rgba(16, 113, 161, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.segment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 113, 161, 0.1);
    border-color: var(--primary-color);
    color: inherit;
}

.segment-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.segment-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.segment-card p {
    font-size: 0.8125rem;
    color: #5c6570;
    margin: 0;
}

.segment-card .bi-arrow-right {
    font-size: 0.9rem;
    margin-top: 0.75rem;
    color: var(--warning-color);
    transition: transform 0.2s ease;
}

.segment-card:hover .bi-arrow-right {
    transform: translateX(4px);
}

/* Deploy options */
.deploy-card {
    height: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(16, 113, 161, 0.12);
    background: var(--white-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.deploy-card:hover {
    box-shadow: 0 12px 36px rgba(16, 113, 161, 0.1);
}

.deploy-card--featured {
    border-color: rgba(243, 147, 51, 0.35);
    box-shadow: 0 4px 20px rgba(243, 147, 51, 0.1);
}

.deploy-card__header {
    padding: 1.75rem 1.75rem 0;
}

.deploy-card__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: rgba(243, 147, 51, 0.15);
    color: #c46a12;
    margin-bottom: 0.75rem;
}

.deploy-card__body {
    padding: 1rem 1.75rem 1.75rem;
}

.deploy-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: #3d454c;
}

.deploy-card__list .bi-check-circle-fill {
    color: #2d9f5e;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a5a82 100%);
    border-radius: 1.25rem;
    padding: 3rem;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.cta-banner .container-fluid {
    position: relative;
    z-index: 1;
}

/* Contact */
.contact-cta-card {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    padding: 2.5rem;
    color: var(--white-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta-card h3 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-cta-card p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
}

.contact-info-card {
    background: var(--white-color);
    border-radius: 1rem;
    border: 1px solid rgba(16, 113, 161, 0.1);
    padding: 2rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(16, 113, 161, 0.08);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(16, 113, 161, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* Top bar */
.top-bar {
    font-size: 0.8125rem;
}

.top-bar a {
    transition: opacity 0.2s ease;
}

.top-bar a:hover {
    opacity: 0.85;
}

/* ===== HOME ABOUT SECTION ===== */
.home-about {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f4f8fb 100%);
    overflow: hidden;
}

.home-about__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 113, 161, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.home-about__header {
    margin-bottom: 3rem;
}

.home-about__intro {
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.home-about__main {
    margin-bottom: 3.5rem;
}

/* Challenge tabs */
.home-about__challenges {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    height: 100%;
}

.home-about__challenge {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: left;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(16, 113, 161, 0.12);
    border-radius: 0.85rem;
    background: var(--white-color);
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease, background 0.3s ease;
}

.home-about__challenge:hover {
    border-color: rgba(16, 113, 161, 0.28);
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.08);
    transform: translateX(4px);
}

.home-about__challenge.is-active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(16, 113, 161, 0.06) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 8px 28px rgba(16, 113, 161, 0.12);
    transform: translateX(6px);
}

.home-about__challenge-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.06em;
    flex-shrink: 0;
    width: 1.75rem;
}

.home-about__challenge-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.home-about__challenge-pain {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.home-about__challenge-pain i {
    color: #ef4444;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.home-about__challenge-fix {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s ease, max-height 0.35s ease;
}

.home-about__challenge-fix i {
    color: #2d9f5e;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.home-about__challenge.is-active .home-about__challenge-pain {
    opacity: 0.6;
    font-size: 0.78rem;
}

.home-about__challenge.is-active .home-about__challenge-fix {
    opacity: 1;
    max-height: 4rem;
}

.home-about__challenge-arrow {
    color: rgba(16, 113, 161, 0.35);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.home-about__challenge.is-active .home-about__challenge-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Preview panel */
.home-about__preview {
    position: relative;
    height: 100%;
    min-height: 380px;
    border-radius: 1.15rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.12);
    box-shadow: 0 16px 48px rgba(16, 113, 161, 0.1);
    overflow: hidden;
}

.home-about__preview-glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(16, 113, 161, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.home-about__panel {
    position: absolute;
    inset: 0;
    padding: 2rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.home-about__panel.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 1;
}

.home-about__panel-head {
    display: flex;
    gap: 1.15rem;
    margin-bottom: 1.5rem;
}

.home-about__panel-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.home-about__panel-icon--primary {
    background: rgba(16, 113, 161, 0.12);
    color: var(--primary-color);
}

.home-about__panel-icon--success {
    background: rgba(45, 159, 94, 0.12);
    color: #2d9f5e;
}

.home-about__panel-icon--warning {
    background: rgba(243, 147, 51, 0.15);
    color: var(--warning-color);
}

.home-about__panel-icon--wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.home-about__panel-head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.home-about__panel-head p {
    font-size: 0.9rem;
    color: #5c6570;
    margin: 0;
    line-height: 1.55;
}

.home-about__panel-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.home-about__mini-metric {
    flex: 1;
    min-width: 140px;
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, rgba(16, 113, 161, 0.06), rgba(50, 147, 183, 0.04));
    border: 1px solid rgba(16, 113, 161, 0.1);
}

.home-about__mini-metric--wa {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.2);
}

.home-about__mini-metric-val {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-about__mini-metric--wa .home-about__mini-metric-val {
    color: #128c7e;
}

.home-about__mini-metric-lbl {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5c6570;
}

.home-about__panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    border-top: 1px solid rgba(16, 113, 161, 0.08);
    padding-top: 1.25rem;
}

.home-about__panel-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: #3d454c;
    font-weight: 500;
}

.home-about__panel-list li i {
    color: var(--primary-color);
    font-weight: 700;
}

/* Flow stepper */
.home-about__flow-wrap {
    margin-bottom: 3rem;
}

.home-about__flow-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.home-about__flow-label i {
    margin-right: 0.35rem;
}

.home-about__flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    position: relative;
}

.home-about__flow-track {
    position: absolute;
    top: 2rem;
    left: 12%;
    right: 12%;
    height: 3px;
    background: rgba(16, 113, 161, 0.12);
    border-radius: 999px;
    z-index: 0;
}

.home-about__flow-progress {
    display: block;
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 999px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1), margin-left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about__flow-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.home-about__flow-step:hover {
    background: rgba(16, 113, 161, 0.04);
}

.home-about__flow-step.is-active {
    background: var(--white-color);
    border-color: rgba(16, 113, 161, 0.2);
    box-shadow: 0 8px 24px rgba(16, 113, 161, 0.1);
    transform: translateY(-4px);
}

.home-about__flow-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--white-color);
    border: 2px solid rgba(16, 113, 161, 0.15);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.home-about__flow-step.is-active .home-about__flow-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: var(--white-color);
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.35);
}

.home-about__flow-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.home-about__flow-desc {
    font-size: 0.72rem;
    color: #5c6570;
    line-height: 1.4;
    max-width: 140px;
}

/* Impact cards */
.home-about__impact-card {
    height: 100%;
    padding: 1.75rem;
    border-radius: 1rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-about__impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 113, 161, 0.1);
}

.home-about__impact-card--featured {
    border-color: rgba(243, 147, 51, 0.35);
    background: linear-gradient(180deg, rgba(243, 147, 51, 0.06) 0%, var(--white-color) 100%);
    box-shadow: 0 8px 28px rgba(243, 147, 51, 0.12);
}

.home-about__impact-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
}

.home-about__impact-card--featured .home-about__impact-num {
    color: var(--warning-color);
}

.home-about__impact-card strong {
    display: block;
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.35rem;
}

.home-about__impact-card p {
    font-size: 0.8125rem;
    color: #5c6570;
    margin: 0;
    line-height: 1.5;
}

/* ===== HOME MODULES SECTION ===== */
.home-modules {
    position: relative;
    padding: 5rem 0;
    background: #ffffff;
    overflow: hidden;
}

.home-modules__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(16, 113, 161, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(243, 147, 51, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.home-modules__intro {
    max-width: 600px;
}

.home-modules__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.home-modules__filter {
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 113, 161, 0.15);
    background: var(--white-color);
    color: #5c6570;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.home-modules__filter:hover {
    border-color: rgba(16, 113, 161, 0.35);
    color: var(--primary-color);
}

.home-modules__filter.is-active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: var(--white-color);
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.3);
}

.home-modules__spotlight {
    position: relative;
    min-height: 420px;
    border-radius: 1.15rem;
    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 50%, #f4f8fb 100%);
    border: 1px solid rgba(16, 113, 161, 0.12);
    box-shadow: 0 20px 56px rgba(16, 113, 161, 0.1);
    overflow: hidden;
}

.home-modules__spotlight-glow {
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(16, 113, 161, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.home-modules__detail {
    position: absolute;
    inset: 0;
    padding: 2rem 2rem 2.75rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.home-modules__detail.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

.home-modules__detail-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.home-modules__detail-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.home-modules__detail-icon--primary {
    background: rgba(16, 113, 161, 0.12);
    color: var(--primary-color);
}

.home-modules__detail-icon--accent {
    background: rgba(243, 147, 51, 0.15);
    color: var(--warning-color);
}

.home-modules__detail-icon--wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.home-modules__detail-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.home-modules__detail-head h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
    letter-spacing: -0.02em;
}

.home-modules__detail-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #5c6570;
    margin-bottom: 1.35rem;
}

.home-modules__detail-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.5rem;
}

.home-modules__detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3d454c;
    padding: 0.45rem 0.65rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(16, 113, 161, 0.06);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.home-modules__detail-features li:hover {
    border-color: rgba(16, 113, 161, 0.18);
    background: var(--white-color);
}

.home-modules__detail-features li i {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.home-modules__detail-foot {
    margin-top: auto;
}

.home-modules__detail-stat {
    display: inline-flex;
    flex-direction: column;
    padding: 0.75rem 1.15rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, rgba(16, 113, 161, 0.08), rgba(50, 147, 183, 0.05));
    border: 1px solid rgba(16, 113, 161, 0.12);
}

.home-modules__detail-stat--wa {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
}

.home-modules__detail-stat-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.home-modules__detail-stat--wa .home-modules__detail-stat-val {
    color: #128c7e;
}

.home-modules__detail-stat-lbl {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5c6570;
}

.home-modules__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(16, 113, 161, 0.08);
}

.home-modules__progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--warning-color));
    transition: width 0.1s linear;
}

.home-modules__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.home-modules__tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
    border: 1px solid rgba(16, 113, 161, 0.12);
    border-radius: 0.85rem;
    background: var(--white-color);
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease, background 0.3s ease;
}

.home-modules__tile:hover {
    border-color: rgba(16, 113, 161, 0.28);
    box-shadow: 0 6px 20px rgba(16, 113, 161, 0.08);
    transform: translateY(-2px);
}

.home-modules__tile.is-active {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, rgba(16, 113, 161, 0.06), var(--white-color));
    box-shadow: 0 8px 24px rgba(16, 113, 161, 0.12);
}

.home-modules__tile.is-hidden {
    display: none;
}

.home-modules__tile-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    background: rgba(16, 113, 161, 0.1);
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.home-modules__tile.is-active .home-modules__tile-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.home-modules__tile-icon--wa {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.home-modules__tile.is-active .home-modules__tile-icon--wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white-color);
}

.home-modules__tile-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.home-modules__tile-hint {
    font-size: 0.7rem;
    color: #5c6570;
    margin-top: 0.2rem;
}

.home-modules__hub {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(16, 113, 161, 0.04), rgba(243, 147, 51, 0.04));
    border: 1px dashed rgba(16, 113, 161, 0.2);
}

.home-modules__hub-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(16, 113, 161, 0.15);
    animation: hubRingPulse 3s ease-in-out infinite;
}

@keyframes hubRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 1; }
}

.home-modules__hub-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    z-index: 1;
}

.home-modules__hub-core i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.home-modules__hub-core span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary-color);
}

/* ===== HOME DIFFERENTIALS SECTION ===== */
.home-diff {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 50%, #f8fafc 100%);
    overflow: hidden;
}

.home-diff__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 113, 161, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.home-diff__intro {
    max-width: 620px;
}

.home-diff__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.home-diff__pillar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    border: 1px solid rgba(16, 113, 161, 0.12);
    border-radius: 1rem;
    background: var(--white-color);
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease, background 0.3s ease;
    height: 100%;
}

.home-diff__pillar:hover {
    border-color: rgba(16, 113, 161, 0.28);
    box-shadow: 0 8px 28px rgba(16, 113, 161, 0.1);
    transform: translateY(-3px);
}

.home-diff__pillar.is-active {
    border-color: var(--primary-color);
    background: linear-gradient(160deg, rgba(16, 113, 161, 0.07) 0%, var(--white-color) 60%);
    box-shadow: 0 12px 36px rgba(16, 113, 161, 0.14);
}

.home-diff__pillar-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(16, 113, 161, 0.12);
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.home-diff__pillar.is-active .home-diff__pillar-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.home-diff__pillar-icon--green {
    background: rgba(45, 159, 94, 0.12);
    color: #2d9f5e;
}

.home-diff__pillar.is-active .home-diff__pillar-icon--green {
    background: linear-gradient(135deg, #2d9f5e, #1a7a42);
}

.home-diff__pillar-icon--accent {
    background: rgba(243, 147, 51, 0.15);
    color: var(--warning-color);
}

.home-diff__pillar.is-active .home-diff__pillar-icon--accent {
    background: linear-gradient(135deg, var(--warning-color), #e07d1f);
    color: var(--white-color);
}

.home-diff__pillar h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.home-diff__pillar p {
    font-size: 0.8125rem;
    color: #5c6570;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.home-diff__pillar-metric {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(16, 113, 161, 0.08);
    color: var(--primary-color);
}

.home-diff__pillar.is-active .home-diff__pillar-metric {
    background: rgba(16, 113, 161, 0.15);
}

.home-diff__detail-wrap {
    position: relative;
    min-height: 220px;
    border-radius: 1rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    box-shadow: 0 12px 40px rgba(16, 113, 161, 0.08);
    margin-bottom: 3rem;
    overflow: hidden;
}

.home-diff__detail {
    position: absolute;
    inset: 0;
    padding: 2rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.home-diff__detail.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

.home-diff__detail-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.65rem;
}

.home-diff__detail-text {
    font-size: 0.9rem;
    color: #5c6570;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.home-diff__detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.home-diff__detail-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3d454c;
}

.home-diff__detail-list li i {
    color: var(--primary-color);
    font-weight: 700;
}

.home-diff__detail-card {
    padding: 1.35rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, rgba(16, 113, 161, 0.08), rgba(50, 147, 183, 0.05));
    border: 1px solid rgba(16, 113, 161, 0.12);
    height: 100%;
}

.home-diff__detail-card--green {
    background: rgba(45, 159, 94, 0.08);
    border-color: rgba(45, 159, 94, 0.2);
}

.home-diff__detail-card--accent {
    background: rgba(243, 147, 51, 0.08);
    border-color: rgba(243, 147, 51, 0.25);
}

.home-diff__detail-card-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.home-diff__detail-card strong {
    display: block;
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.home-diff__detail-card p {
    font-size: 0.8125rem;
    color: #5c6570;
    margin: 0;
    line-height: 1.5;
}

.home-diff__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(16, 113, 161, 0.08);
}

.home-diff__progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.1s linear;
}

/* Compare */
.home-diff__compare {
    margin-bottom: 3rem;
}

.home-diff__compare-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

.home-diff__compare-grid {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(16, 113, 161, 0.1);
    border: 1px solid rgba(16, 113, 161, 0.1);
}

.home-diff__compare-col {
    padding: 1.75rem 2rem;
    height: 100%;
}

.home-diff__compare-col--bad {
    background: #fafafa;
    border-right: 1px solid rgba(16, 113, 161, 0.08);
}

.home-diff__compare-col--good {
    background: linear-gradient(160deg, rgba(16, 113, 161, 0.06) 0%, var(--white-color) 100%);
}

.home-diff__compare-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-diff__compare-col--bad h4 {
    color: #6b7280;
}

.home-diff__compare-col--bad h4 i {
    color: #ef4444;
}

.home-diff__compare-col--good h4 {
    color: var(--primary-color);
}

.home-diff__compare-col--good h4 i {
    color: #2d9f5e;
}

.home-diff__compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-diff__compare-col li {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #3d454c;
    position: relative;
    padding-left: 1.25rem;
}

.home-diff__compare-col li:last-child {
    border-bottom: none;
}

.home-diff__compare-col--bad li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.home-diff__compare-col--good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d9f5e;
    font-weight: 700;
}

/* Journey */
.home-diff__journey-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

.home-diff__journey-steps {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    position: relative;
}

.home-diff__journey-steps::before {
    content: '';
    position: absolute;
    top: 1.25rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(16, 113, 161, 0.15);
    z-index: 0;
}

.home-diff__journey-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: default;
    transition: transform 0.3s ease;
}

.home-diff__journey-step.is-active {
    transform: translateY(-4px);
}

.home-diff__journey-num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    background: var(--white-color);
    border: 2px solid rgba(16, 113, 161, 0.2);
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.home-diff__journey-step.is-active .home-diff__journey-num {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: var(--white-color);
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.35);
}

.home-diff__journey-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5c6570;
    max-width: 90px;
    line-height: 1.3;
}

.home-diff__journey-step.is-active .home-diff__journey-title {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== HOME DEPLOY / INFRASTRUCTURE SECTION ===== */
.home-deploy {
    position: relative;
    padding: 5rem 0;
    background: #ffffff;
    overflow: hidden;
}

.home-deploy__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(16, 113, 161, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 10% 90%, rgba(243, 147, 51, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.home-deploy__intro {
    max-width: 600px;
}

.home-deploy__switch-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.home-deploy__switch {
    position: relative;
    display: inline-flex;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(16, 113, 161, 0.08);
    border: 1px solid rgba(16, 113, 161, 0.12);
    gap: 0.25rem;
}

.home-deploy__switch-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #5c6570;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.home-deploy__switch-btn.is-active {
    color: var(--white-color);
}

.home-deploy__switch-slider {
    position: absolute;
    top: 0.35rem;
    left: 0.35rem;
    width: calc(50% - 0.35rem);
    height: calc(100% - 0.7rem);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.35);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.home-deploy__switch.is-local .home-deploy__switch-slider {
    transform: translateX(100%);
}

.home-deploy__switch-hint {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.65rem;
}

.home-deploy__showcase {
    position: relative;
    min-height: 380px;
    margin-bottom: 2.5rem;
}

.home-deploy__panel {
    position: absolute;
    inset: 0;
    padding: 2rem;
    border-radius: 1.15rem;
    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid rgba(16, 113, 161, 0.12);
    box-shadow: 0 16px 48px rgba(16, 113, 161, 0.08);
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.home-deploy__panel.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 1;
}

.home-deploy__panel[data-deploy-panel="local"].is-active {
    transform: translateX(0);
}

.home-deploy__panel:not(.is-active)[data-deploy-panel="local"] {
    transform: translateX(-24px);
}

.home-deploy__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(243, 147, 51, 0.15);
    color: #c46a12;
    margin-bottom: 0.85rem;
}

.home-deploy__badge--local {
    background: rgba(16, 113, 161, 0.12);
    color: var(--primary-color);
}

.home-deploy__panel-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.home-deploy__panel-lead {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #5c6570;
    margin-bottom: 1.25rem;
}

.home-deploy__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.45rem;
}

.home-deploy__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3d454c;
}

.home-deploy__features li i {
    color: #2d9f5e;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.home-deploy__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.home-deploy__tags span {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(16, 113, 161, 0.08);
    color: var(--primary-color);
}

/* Visual illustrations */
.home-deploy__visual {
    position: relative;
    height: 260px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-deploy__visual--cloud {
    background: linear-gradient(160deg, rgba(16, 113, 161, 0.12) 0%, rgba(50, 147, 183, 0.06) 100%);
    border: 1px solid rgba(16, 113, 161, 0.15);
}

.home-deploy__visual--local {
    background: linear-gradient(160deg, rgba(33, 37, 41, 0.06) 0%, rgba(16, 113, 161, 0.06) 100%);
    border: 1px solid rgba(16, 113, 161, 0.12);
}

.home-deploy__cloud-shape {
    position: absolute;
    width: 120px;
    height: 70px;
    background: var(--white-color);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(16, 113, 161, 0.15);
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    animation: deployCloudFloat 4s ease-in-out infinite;
}

.home-deploy__cloud-shape::before,
.home-deploy__cloud-shape::after {
    content: '';
    position: absolute;
    background: var(--white-color);
    border-radius: 50%;
}

.home-deploy__cloud-shape::before {
    width: 50px;
    height: 50px;
    top: -20px;
    left: 15px;
}

.home-deploy__cloud-shape::after {
    width: 40px;
    height: 40px;
    top: -12px;
    right: 18px;
}

@keyframes deployCloudFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.home-deploy__device {
    position: absolute;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.65rem;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.15);
    animation: deployDevicePulse 3s ease-in-out infinite;
}

.home-deploy__device--laptop {
    bottom: 22%;
    left: 18%;
    animation-delay: 0s;
}

.home-deploy__device--phone {
    bottom: 30%;
    right: 20%;
    animation-delay: -1s;
}

.home-deploy__device--tablet {
    top: 22%;
    right: 22%;
    animation-delay: -2s;
}

@keyframes deployDevicePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.home-deploy__server-rack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 1rem;
    background: #2d3748;
    border-radius: 0.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.home-deploy__server-rack span {
    display: block;
    width: 100px;
    height: 14px;
    background: #4a5568;
    border-radius: 2px;
    position: relative;
}

.home-deploy__server-rack span::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: deployLedBlink 2s ease-in-out infinite;
}

.home-deploy__server-rack span:nth-child(2)::after {
    animation-delay: -0.7s;
}

.home-deploy__server-rack span:nth-child(3)::after {
    animation-delay: -1.4s;
}

@keyframes deployLedBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.home-deploy__visual-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.home-deploy__visual-label i {
    margin-right: 0.3rem;
}

/* Scenarios */
.home-deploy__scenarios {
    margin-bottom: 2.5rem;
}

.home-deploy__scenarios-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

.home-deploy__scenario {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.25rem;
    border: 1px solid rgba(16, 113, 161, 0.12);
    border-radius: 0.85rem;
    background: var(--white-color);
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease, background 0.3s ease;
    width: 100%;
}

.home-deploy__scenario:hover {
    border-color: rgba(16, 113, 161, 0.28);
    box-shadow: 0 6px 20px rgba(16, 113, 161, 0.08);
    transform: translateY(-2px);
}

.home-deploy__scenario.is-active {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, rgba(16, 113, 161, 0.06), var(--white-color));
    box-shadow: 0 8px 24px rgba(16, 113, 161, 0.12);
}

.home-deploy__scenario i {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.home-deploy__scenario strong {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.home-deploy__scenario span {
    font-size: 0.78rem;
    color: #5c6570;
    line-height: 1.4;
}

/* Matrix */
.home-deploy__matrix {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(16, 113, 161, 0.12);
    box-shadow: 0 8px 32px rgba(16, 113, 161, 0.06);
    background: var(--white-color);
}

.home-deploy__matrix-head,
.home-deploy__matrix-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
}

.home-deploy__matrix-head {
    background: rgba(16, 113, 161, 0.06);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-color);
    border-bottom: 1px solid rgba(16, 113, 161, 0.1);
}

.home-deploy__matrix-col {
    text-align: center;
    padding: 0.35rem 0.5rem;
    border-radius: 0.45rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.home-deploy__matrix-col.is-highlighted {
    background: rgba(16, 113, 161, 0.12);
    box-shadow: inset 0 0 0 1px rgba(16, 113, 161, 0.2);
}

.home-deploy__matrix-col--local.is-highlighted {
    background: rgba(33, 37, 41, 0.08);
    box-shadow: inset 0 0 0 1px rgba(33, 37, 41, 0.15);
}

.home-deploy__matrix-row {
    font-size: 0.8125rem;
    color: #3d454c;
    border-bottom: 1px solid rgba(16, 113, 161, 0.06);
}

.home-deploy__matrix-row:last-child {
    border-bottom: none;
}

.home-deploy__matrix-row > span:first-child {
    font-weight: 500;
}

.home-deploy__matrix-val {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    transition: background 0.3s ease;
    padding: 0.25rem;
    border-radius: 0.35rem;
}

.home-deploy__matrix-val.is-highlighted {
    background: rgba(16, 113, 161, 0.06);
}

.home-deploy__matrix-val[data-matrix-col="local"].is-highlighted {
    background: rgba(33, 37, 41, 0.05);
}

/* ===== HOME SEGMENTS SECTION ===== */
.home-segments {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.home-segments__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 113, 161, 0.04) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.home-segments__intro {
    max-width: 620px;
}

.home-segments__nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    height: 100%;
}

.home-segments__nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: left;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(16, 113, 161, 0.12);
    border-radius: 0.85rem;
    background: var(--white-color);
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease, background 0.3s ease;
}

.home-segments__nav-item:hover {
    border-color: rgba(16, 113, 161, 0.28);
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.08);
    transform: translateX(4px);
}

.home-segments__nav-item.is-active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(16, 113, 161, 0.07), var(--white-color));
    box-shadow: 0 8px 28px rgba(16, 113, 161, 0.12);
    transform: translateX(6px);
}

.home-segments__nav-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(16, 113, 161, 0.1);
    color: var(--primary-color);
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.home-segments__nav-item.is-active .home-segments__nav-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.home-segments__nav-text {
    flex: 1;
    min-width: 0;
}

.home-segments__nav-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

.home-segments__nav-text small {
    display: block;
    font-size: 0.75rem;
    color: #5c6570;
    margin-top: 0.15rem;
}

.home-segments__nav-arrow {
    color: rgba(16, 113, 161, 0.35);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.home-segments__nav-item.is-active .home-segments__nav-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

.home-segments__spotlight {
    position: relative;
    min-height: 340px;
    border-radius: 1.15rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.12);
    box-shadow: 0 16px 48px rgba(16, 113, 161, 0.1);
    overflow: hidden;
}

.home-segments__panel {
    position: absolute;
    inset: 0;
    padding: 2rem 2rem 2.75rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.home-segments__panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

.home-segments__panel-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warning-color), #e07d1f);
}

.home-segments__panel-accent--blue {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.home-segments__panel-accent--green {
    background: linear-gradient(90deg, #2d9f5e, #1a7a42);
}

.home-segments__panel-accent--dark {
    background: linear-gradient(90deg, #4a5568, #2d3748);
}

.home-segments__panel-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.65rem;
}

.home-segments__panel h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    max-width: 480px;
}

.home-segments__panel > p {
    font-size: 0.925rem;
    line-height: 1.65;
    color: #5c6570;
    margin-bottom: 1.25rem;
    max-width: 520px;
}

.home-segments__panel-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.45rem;
}

.home-segments__panel-features li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3d454c;
}

.home-segments__panel-features li i {
    color: var(--primary-color);
    font-weight: 700;
}

.home-segments__panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.65rem 0;
    transition: gap 0.25s ease, color 0.25s ease;
}

.home-segments__panel-cta:hover {
    color: var(--warning-color);
    gap: 0.75rem;
}

.home-segments__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(16, 113, 161, 0.08);
}

.home-segments__progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--warning-color));
    transition: width 0.1s linear;
}

.home-segments__more {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 113, 161, 0.1);
}

.home-segments__more-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

.home-segments__more-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.home-segments__more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 113, 161, 0.15);
    background: var(--white-color);
    color: #3d454c;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.home-segments__more-link:hover {
    border-color: var(--primary-color);
    background: rgba(16, 113, 161, 0.06);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.home-segments__more-link i {
    font-size: 0.95rem;
    color: var(--primary-color);
}

/* ===== HOME CTA SECTION ===== */
.home-cta {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.home-cta__card {
    position: relative;
    border-radius: 1.35rem;
    padding: 2.5rem 2.5rem 0;
    background: linear-gradient(135deg, #0a5a82 0%, var(--primary-color) 45%, #0d6e9e 100%);
    color: var(--white-color);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 24px 64px rgba(16, 113, 161, 0.35);
}

.home-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-cta__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.home-cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.home-cta__orb--1 {
    width: 280px;
    height: 280px;
    background: var(--warning-color);
    top: -80px;
    right: -40px;
    animation: homeCtaOrb 12s ease-in-out infinite;
}

.home-cta__orb--2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: -60px;
    left: -40px;
    animation: homeCtaOrb 12s ease-in-out infinite reverse;
}

@keyframes homeCtaOrb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -15px); }
}

.home-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.15rem;
    backdrop-filter: blur(8px);
}

.home-cta__title {
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.home-cta__lead {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.home-cta__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-cta__trust li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.home-cta__trust li i {
    color: #4ade80;
    font-size: 0.95rem;
}

.home-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-cta__btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.85rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.home-cta__btn i {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.home-cta__btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.home-cta__btn strong {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-cta__btn small {
    font-size: 0.72rem;
    opacity: 0.85;
    font-weight: 500;
    margin-top: 0.1rem;
}

.home-cta__btn--primary {
    background: linear-gradient(135deg, #f39333, #e07d1f);
    color: var(--white-color);
    border: none;
    box-shadow: 0 8px 24px rgba(243, 147, 51, 0.4);
}

.home-cta__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(243, 147, 51, 0.5);
    color: var(--white-color);
}

.home-cta__btn--secondary {
    background: var(--white-color);
    color: var(--primary-color);
    border: none;
}

.home-cta__btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.home-cta__btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.home-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white-color);
    transform: translateY(-2px);
}

.home-cta__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    margin-top: 2rem;
    padding: 1.15rem 1.5rem;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 1.35rem 1.35rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-bottom: 0;
}

.home-cta__stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.home-cta__stat i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== HOME CONTACT SECTION ===== */
.home-contact {
    position: relative;
    padding: 5rem 0;
    background: #ffffff;
    overflow: hidden;
}

.home-contact__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 0% 50%, rgba(16, 113, 161, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 100% 80%, rgba(37, 211, 102, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.home-contact__intro {
    max-width: 580px;
}

.home-contact__main-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    border-radius: 1.15rem;
    background: linear-gradient(145deg, #0a5a82 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: var(--white-color);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(16, 113, 161, 0.25);
    display: flex;
    flex-direction: column;
}

.home-contact__main-glow {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.home-contact__main-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    width: fit-content;
}

.home-contact__main-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.home-contact__main-card > p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
}

.home-contact__channels {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.home-contact__channel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.home-contact__channel i {
    font-size: 1.15rem;
}

.home-contact__channel:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white-color);
}

.home-contact__channel.is-active {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.home-contact__channel-panel {
    margin-top: auto;
    animation: contactPanelIn 0.35s ease;
}

.home-contact__channel-panel.is-active {
    display: block;
}

.home-contact__channel-panel[hidden] {
    display: none !important;
}

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

.home-contact__channel-hint {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.home-contact__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 0.65rem;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-contact__action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.home-contact__action--wa {
    background: #25d366;
    color: var(--white-color);
}

.home-contact__action--wa:hover {
    background: #1fb855;
    color: var(--white-color);
}

.home-contact__info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    height: 100%;
    border-radius: 0.85rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-contact__info-card:hover {
    border-color: rgba(16, 113, 161, 0.25);
    box-shadow: 0 8px 24px rgba(16, 113, 161, 0.08);
    transform: translateY(-2px);
}

.home-contact__info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(16, 113, 161, 0.1);
    color: var(--primary-color);
    flex-shrink: 0;
}

.home-contact__info-icon--accent {
    background: rgba(243, 147, 51, 0.15);
    color: var(--warning-color);
}

.home-contact__info-icon--green {
    background: rgba(45, 159, 94, 0.12);
    color: #2d9f5e;
}

.home-contact__info-card strong {
    display: block;
    font-size: 0.875rem;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

.home-contact__info-card p {
    font-size: 0.8125rem;
    color: #5c6570;
    margin: 0;
    line-height: 1.45;
}

.home-contact__flow {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border: 1px solid rgba(16, 113, 161, 0.1);
}

.home-contact__flow-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary-color);
    margin-bottom: 1.15rem;
    text-align: center;
}

.home-contact__flow-label i {
    margin-right: 0.35rem;
}

.home-contact__flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.home-contact__flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    border: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-contact__flow-step.is-active {
    background: var(--white-color);
    border-color: rgba(16, 113, 161, 0.15);
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.08);
}

.home-contact__flow-num {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(16, 113, 161, 0.1);
    color: var(--primary-color);
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.home-contact__flow-step.is-active .home-contact__flow-num {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.home-contact__flow-step strong {
    display: block;
    font-size: 0.875rem;
    color: var(--dark-color);
    margin-bottom: 0.15rem;
}

.home-contact__flow-step span {
    font-size: 0.75rem;
    color: #5c6570;
}

/* ===== HOME FAQ SECTION ===== */
.home-faq {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.home-faq__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 113, 161, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.home-faq__intro {
    max-width: 560px;
}

.home-faq__sidebar {
    position: sticky;
    top: 6rem;
}

.home-faq__filter-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.home-faq__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
}

.home-faq__filter {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 113, 161, 0.15);
    background: var(--white-color);
    color: #5c6570;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.home-faq__filter:hover {
    border-color: rgba(16, 113, 161, 0.35);
    color: var(--primary-color);
}

.home-faq__filter.is-active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: var(--white-color);
    box-shadow: 0 4px 12px rgba(16, 113, 161, 0.25);
}

.home-faq__help-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.12);
    box-shadow: 0 8px 28px rgba(16, 113, 161, 0.08);
    text-align: center;
}

.home-faq__help-card > i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.home-faq__help-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.home-faq__help-card p {
    font-size: 0.8125rem;
    color: #5c6570;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.home-faq__help-link {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.home-faq__help-link:hover {
    text-decoration: underline;
}

.home-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.home-faq__item {
    border: 1px solid rgba(16, 113, 161, 0.1) !important;
    border-radius: 0.85rem !important;
    overflow: hidden;
    background: var(--white-color);
    box-shadow: 0 2px 8px rgba(16, 113, 161, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease, transform 0.3s ease;
}

.home-faq__item.is-hidden {
    display: none;
}

.home-faq__item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(16, 113, 161, 0.25) !important;
    box-shadow: 0 8px 24px rgba(16, 113, 161, 0.1);
}

.home-faq__accordion .accordion-button {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 1.25rem;
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--dark-color);
    background: var(--white-color);
    box-shadow: none;
}

.home-faq__accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(16, 113, 161, 0.06), rgba(255, 255, 255, 1));
    color: var(--primary-color);
    box-shadow: none;
}

.home-faq__accordion .accordion-button::after {
    flex-shrink: 0;
    margin-left: auto;
}

.home-faq__accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.home-faq__item-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(16, 113, 161, 0.1);
    color: var(--primary-color);
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease;
}

.home-faq__accordion .accordion-button:not(.collapsed) .home-faq__item-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.home-faq__item-text {
    text-align: left;
    line-height: 1.35;
}

.home-faq__accordion .accordion-body {
    padding: 0 1.25rem 1.25rem 4.1rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #5c6570;
    border-top: 1px solid rgba(16, 113, 161, 0.06);
}

.home-faq__empty {
    font-size: 0.9rem;
}

.home-faq__empty i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

/* ===== HOME FOOTER ===== */
.home-footer {
    position: relative;
    padding: 3rem 0 1.5rem;
    background: linear-gradient(180deg, #061e2e 0%, #0a3048 50%, #0a5a82 100%);
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.home-footer__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-footer__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, black 0%, transparent 90%);
}

.home-footer .container {
    position: relative;
    z-index: 1;
}

.home-footer__cta {
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 1.35rem 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.home-footer__cta strong {
    display: block;
    font-size: 1rem;
    color: var(--white-color);
    margin-bottom: 0.2rem;
}

.home-footer__cta span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.home-footer__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 0.6rem;
    background: #25d366;
    color: var(--white-color) !important;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-footer__cta-btn:hover {
    background: #1fb855;
    color: var(--white-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.home-footer__main {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-footer__brand {
    display: inline-block;
    margin-bottom: 1rem;
}

.home-footer__brand img {
    opacity: 0.95;
    transition: opacity 0.25s ease;
}

.home-footer__brand:hover img {
    opacity: 1;
}

.home-footer__about {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 1.25rem;
    max-width: 320px;
}

.home-footer__social {
    display: flex;
    gap: 0.6rem;
}

.home-footer__social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.home-footer__social a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white-color) !important;
    transform: translateY(-3px);
}

.home-footer__title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-color) !important;
    margin-bottom: 1rem;
}

.home-footer__links,
.home-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-footer__links li,
.home-footer__contact li {
    margin-bottom: 0.5rem;
}

.home-footer__links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.home-footer__links a:hover {
    color: var(--warning-color) !important;
    padding-left: 4px;
}

.home-footer__contact a,
.home-footer__contact span {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none;
}

.home-footer__contact a:hover {
    color: var(--warning-color) !important;
}

.home-footer__contact i {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.45);
}

.home-footer__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
}

.home-footer__copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0;
}

.home-footer__bar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-footer__legal {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-footer__legal:hover {
    color: var(--warning-color) !important;
}

.home-footer__top {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-footer__top:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.home-footer__top.is-visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991.98px) {
    .home-hero {
        padding: 3rem 0 0;
        text-align: center;
    }

    .home-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__pills,
    .home-hero__actions,
    .home-hero__cta-note {
        justify-content: center;
    }

    .home-hero__cta-note {
        justify-content: center;
    }

    .home-hero__social {
        flex-direction: column;
        text-align: center;
    }

    .home-hero__social-avatars {
        justify-content: center;
    }

    .home-hero__showcase {
        max-width: 520px;
        margin: 0 auto;
    }

    .home-hero__float--tl {
        left: 0;
        top: -0.5rem;
    }

    .home-hero__float--br {
        right: 0;
        bottom: 2rem;
    }

    .home-hero__stats-inner {
        justify-content: center;
        text-align: center;
    }

    .home-hero__stat {
        align-items: center;
        min-width: 45%;
    }

    .home-hero__stat-divider {
        display: none;
    }

    .home-about__flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-about__flow-track {
        display: none;
    }

    .home-about__preview {
        min-height: 420px;
    }

    .home-modules__spotlight {
        min-height: 400px;
        margin-bottom: 0.5rem;
    }

    .home-modules__hub {
        display: none;
    }

    .home-diff__pillars {
        grid-template-columns: 1fr;
    }

    .home-diff__detail-wrap {
        min-height: 380px;
    }

    .home-deploy__showcase {
        min-height: 520px;
    }

    .home-deploy__matrix-head,
    .home-deploy__matrix-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.35rem;
    }

    .home-deploy__matrix-head > span:first-child,
    .home-deploy__matrix-row > span:first-child {
        font-weight: 700;
        padding-bottom: 0.25rem;
        border-bottom: 1px solid rgba(16, 113, 161, 0.08);
        margin-bottom: 0.25rem;
    }

    .home-segments__nav-item:hover,
    .home-segments__nav-item.is-active {
        transform: none;
    }

    .home-segments__spotlight {
        min-height: 360px;
    }

    .home-cta__card {
        padding: 2rem 1.5rem 0;
    }

    .home-cta__footer {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-cta__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .home-cta__trust {
        justify-content: center;
    }

    .home-contact__main-card {
        min-height: auto;
    }

    .home-faq__sidebar {
        position: static;
    }

    .home-faq__accordion .accordion-body {
        padding-left: 1.25rem;
    }

    .home-footer {
        padding-bottom: 1rem;
    }

    .home-footer__cta {
        text-align: center;
        margin-bottom: 2rem;
    }

    .home-footer__about {
        max-width: none;
    }

    .home-footer__bar {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .home-hero__float--tl {
        display: none;
    }

    .home-hero__float--br {
        bottom: 1rem;
        right: 0.5rem;
        font-size: 0.72rem;
        padding: 0.6rem 0.8rem;
    }

    .stats-bar .row > div {
        border-bottom: 1px solid rgba(16, 113, 161, 0.08);
    }

    .stats-bar .row > div:last-child {
        border-bottom: none;
    }

    .cta-banner {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .home-about {
        padding: 3rem 0;
    }

    .home-about__challenge:hover,
    .home-about__challenge.is-active {
        transform: none;
    }

    .home-about__flow {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .home-about__flow-step {
        padding: 0.75rem 0.5rem;
    }

    .home-about__flow-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1rem;
    }

    .home-about__panel {
        padding: 1.5rem;
    }

    .home-modules {
        padding: 3rem 0;
    }

    .home-modules__detail {
        padding: 1.5rem 1.5rem 2.25rem;
    }

    .home-modules__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-modules__tile-hint {
        display: none;
    }

    .home-diff {
        padding: 3rem 0;
    }

    .home-diff__detail {
        padding: 1.5rem;
    }

    .home-diff__detail-wrap {
        min-height: 480px;
    }

    .home-diff__journey-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .home-diff__journey-steps::before {
        display: none;
    }

    .home-diff__journey-step {
        flex: 0 0 auto;
        min-width: 80px;
    }

    .home-deploy {
        padding: 3rem 0;
    }

    .home-deploy__panel {
        padding: 1.5rem;
    }

    .home-deploy__showcase {
        min-height: 680px;
    }

    .home-deploy__switch-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.82rem;
    }

    .home-segments {
        padding: 3rem 0;
    }

    .home-segments__panel {
        padding: 1.5rem 1.5rem 2.25rem;
    }

    .home-segments__spotlight {
        min-height: 400px;
    }

    .home-segments__more-links {
        flex-direction: column;
        align-items: stretch;
    }

    .home-segments__more-link {
        justify-content: center;
    }

    .home-cta {
        padding: 3rem 0;
    }

    .home-contact {
        padding: 3rem 0;
    }

    .home-contact__main-card {
        padding: 1.5rem;
    }

    .home-faq {
        padding: 3rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__orb,
    .home-hero__rotate-inner,
    .home-hero__float,
    .home-hero__badge-dot,
    .home-hero__reveal {
        animation: none !important;
    }

    .home-hero__reveal {
        opacity: 1;
        transform: none;
    }

    .home-hero__panel {
        transition: none;
    }

    .home-about__panel,
    .home-about__challenge,
    .home-about__flow-progress,
    .home-about__flow-step {
        transition: none !important;
    }

    .home-modules__detail,
    .home-modules__tile,
    .home-modules__hub-ring,
    .home-modules__progress-bar {
        transition: none !important;
        animation: none !important;
    }

    .home-diff__detail,
    .home-diff__pillar,
    .home-diff__journey-step,
    .home-diff__progress-bar {
        transition: none !important;
    }

    .home-deploy__panel,
    .home-deploy__switch-slider,
    .home-deploy__cloud-shape,
    .home-deploy__device,
    .home-deploy__server-rack span::after {
        transition: none !important;
        animation: none !important;
    }

    .home-segments__panel,
    .home-segments__nav-item,
    .home-segments__progress-bar {
        transition: none !important;
    }

    .home-cta__orb {
        animation: none !important;
    }

    .home-contact__channel-panel {
        animation: none !important;
    }

    .home-contact__flow-step {
        transition: none !important;
    }
}

/* ===== HEADER — PÁGINAS INTERNAS ===== */
.home-header--inner .home-header__nav {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(16, 113, 161, 0.08);
    margin-bottom: 0;
}

.home-header--inner .home-header__brand img,
.home-header--inner.is-scrolled .home-header__brand img,
.home-header--inner.is-menu-open .home-header__brand img {
    filter: none;
}

.home-header--inner .home-header__link {
    color: #1e3a4f;
}

.home-header--inner .home-header__toggle {
    border-color: rgba(16, 113, 161, 0.15);
    background: rgba(16, 113, 161, 0.06);
}

.home-header--inner .home-header__toggle-bar {
    background: var(--primary-color);
}

.home-header--inner .home-header__actions {
    border-left-color: rgba(16, 113, 161, 0.12);
}

/* ===== PAGE HERO (INTERNAS) ===== */
.page-hero {
    position: relative;
    background: #061e2e;
    color: var(--white-color);
    padding: 3.5rem 0 3.25rem;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

.page-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.page-hero__orb--1 {
    width: 320px;
    height: 320px;
    background: var(--primary-color);
    top: -80px;
    right: -60px;
}

.page-hero__orb--2 {
    width: 240px;
    height: 240px;
    background: var(--warning-color);
    bottom: -40px;
    left: 10%;
    opacity: 0.2;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-hero__title {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 640px;
}

.page-hero__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.page-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.page-hero__trust i {
    color: var(--warning-color);
}

.page-hero--center {
    text-align: center;
}

.page-hero--center .page-hero__title,
.page-hero--center .page-hero__lead {
    margin-left: auto;
    margin-right: auto;
}

.page-hero--center .page-hero__actions {
    justify-content: center;
}

.page-hero--center .page-hero__trust {
    justify-content: center;
}

/* ===== PAGE PLANOS ===== */
body.page-planos {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-planos-pricing {
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 50%, #f4f7fb 100%);
    position: relative;
    padding: 5rem 0;
}

.section-planos-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 113, 161, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.section-planos-pricing .container {
    position: relative;
    z-index: 1;
}

.plan-section-heading .eyebrow,
.plan-section-heading .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.plan-card-modern {
    --plan-accent: var(--primary-color);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white-color);
    border-radius: 1rem;
    border: 1px solid rgba(16, 113, 161, 0.1);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 8px 24px rgba(16, 113, 161, 0.06);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.plan-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 8px rgba(16, 24, 40, 0.06), 0 20px 40px rgba(16, 113, 161, 0.12);
    border-color: rgba(16, 113, 161, 0.22);
}

.plan-card-modern__accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--plan-accent, var(--primary-color)), var(--secondary-color));
    opacity: 0.95;
}

.plan-card-modern--featured {
    --plan-accent: var(--warning-color);
    border-color: rgba(243, 147, 51, 0.35);
    box-shadow: 0 4px 12px rgba(243, 147, 51, 0.12), 0 16px 40px rgba(16, 113, 161, 0.1);
}

.plan-card-modern__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f39333, #e07d1f);
    color: var(--white-color);
    box-shadow: 0 2px 8px rgba(243, 147, 51, 0.4);
}

.plan-card-modern__inner {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plan-card-modern__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--plan-accent);
    background: linear-gradient(145deg, rgba(16, 113, 161, 0.1), rgba(50, 147, 183, 0.08));
    margin-bottom: 1rem;
}

.plan-card-modern__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.plan-card-modern__desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5c6570;
    margin-bottom: 1.25rem;
}

.plan-card-modern__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, rgba(16, 113, 161, 0.06), rgba(50, 147, 183, 0.04));
    border: 1px solid rgba(16, 113, 161, 0.1);
}

.plan-card-modern__price-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.plan-card-modern__price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-card-modern__cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.plan-card-modern__cta .btn {
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
}

.plan-card-modern__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 113, 161, 0.15), transparent);
    margin-bottom: 1rem;
}

.plan-card-modern__includes {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.65rem;
}

.plan-card-modern__features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.plan-card-modern__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(16, 113, 161, 0.06);
    color: #3d454c;
}

.plan-card-modern__features li:last-child {
    border-bottom: none;
}

.plan-card-modern__features .bi-check-circle-fill,
.plan-card-modern__features .bi-plus-circle-fill {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 0.95rem;
}

.plan-card-modern__features .bi-check-circle-fill {
    color: #2d9f5e;
}

.plan-card-modern__features .bi-plus-circle-fill {
    color: var(--primary-color);
}

.plan-card-modern__features strong {
    font-weight: 600;
    color: var(--dark-color);
}

.page-planos-compare {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.page-planos-compare__table-wrap {
    border-radius: 1rem;
    border: 1px solid rgba(16, 113, 161, 0.1);
    box-shadow: 0 8px 32px rgba(16, 113, 161, 0.08);
    background: var(--white-color);
    overflow: hidden;
}

.page-planos-compare__table-wrap .table {
    margin-bottom: 0;
}

.page-planos-compare__table-wrap thead th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    padding: 1rem;
    white-space: nowrap;
}

.page-planos-compare__table-wrap thead th:first-child {
    text-align: left;
}

.page-planos-compare__table-wrap tbody td {
    padding: 0.85rem 1rem;
    font-size: 0.875rem;
    border-color: rgba(16, 113, 161, 0.06);
}

.page-planos-compare__table-wrap tbody tr:hover {
    background: rgba(16, 113, 161, 0.03);
}

.page-planos-faq {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

.page-planos-faq .home-faq__help-card {
    margin-top: 0;
}

/* ===== PAGE INTEGRAÇÕES ===== */
body.page-integracoes {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-hero--split {
    padding: 3.5rem 0 3rem;
}

.page-hero--split .page-hero__title,
.page-hero--split .page-hero__lead {
    max-width: none;
}

.page-int-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.page-int-jump a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-int-jump a:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white-color);
    transform: translateY(-1px);
}

.page-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero__visual-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-size: 4.5rem;
    color: var(--warning-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.page-int-section {
    padding: 5rem 0;
    position: relative;
}

.page-int-section--alt {
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.page-int-section--alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 113, 161, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.page-int-section .container {
    position: relative;
    z-index: 1;
}

.page-int-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.page-int-icon--wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white-color);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.page-int-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.page-int-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: #3d454c;
}

.page-int-features i {
    color: #2d9f5e;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.page-int-panel {
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(16, 113, 161, 0.08);
    height: 100%;
}

.page-int-panel__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.page-int-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-int-timeline__item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.page-int-timeline__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #25d366;
    margin-top: 0.35rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
}

.page-int-timeline__item h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--dark-color);
}

.page-int-timeline__item p {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.page-int-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.page-int-card {
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.page-int-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(16, 113, 161, 0.12);
    border-color: rgba(16, 113, 161, 0.22);
}

.page-int-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.85rem;
    font-size: 1.35rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.page-int-card__icon--ml { background: linear-gradient(135deg, #ffe600, #e6c200); color: #1a1a1a; }
.page-int-card__icon--amz { background: linear-gradient(135deg, #ff9900, #e88b00); }
.page-int-card__icon--b2w { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); }
.page-int-card__icon--mag { background: linear-gradient(135deg, #0086ff, #0066cc); }
.page-int-card__icon--via { background: linear-gradient(135deg, #e31837, #b8142d); }
.page-int-card__icon--more { background: linear-gradient(135deg, #475569, #334155); }

.page-int-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.page-int-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.page-int-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-int-card ul li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #3d454c;
    padding: 0.25rem 0;
}

.page-int-card ul i {
    color: #2d9f5e;
}

.page-int-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.page-int-tile {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    background: rgba(16, 113, 161, 0.05);
    border: 1px solid rgba(16, 113, 161, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.page-int-tile:hover {
    background: rgba(16, 113, 161, 0.09);
    border-color: rgba(16, 113, 161, 0.15);
}

.page-int-tile i {
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.page-int-tile h6 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    color: var(--dark-color);
}

.page-int-tile small {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
}

.page-int-steps {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.page-int-step {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.page-int-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.page-int-step h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.page-int-step p {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

.page-int-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.page-int-support-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(16, 113, 161, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.page-int-support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 113, 161, 0.1);
}

.page-int-support-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    font-size: 1.35rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.page-int-support-card__icon--time { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); }
.page-int-support-card__icon--help { background: linear-gradient(135deg, #25d366, #128c7e); }
.page-int-support-card__icon--docs { background: linear-gradient(135deg, var(--warning-color), #e07d1f); }

.page-int-support-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.65rem;
}

.page-int-support-card p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 767.98px) {
    .page-int-features {
        grid-template-columns: 1fr;
    }

    .page-int-tiles {
        grid-template-columns: 1fr;
    }

    .page-hero__visual {
        margin-top: 2rem;
    }
}

/* ===== PAGE ASSINAR PLANO ===== */
body.page-assinar {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-assinar {
    padding: 3rem 0 5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.page-assinar__card {
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(16, 113, 161, 0.1);
    overflow: hidden;
}

.page-assinar__steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 113, 161, 0.06), rgba(50, 147, 183, 0.04));
    border-bottom: 1px solid rgba(16, 113, 161, 0.08);
}

.page-assinar__step {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(16, 113, 161, 0.1);
}

.page-assinar__step.is-active {
    color: var(--primary-color);
    background: var(--white-color);
    border-color: rgba(16, 113, 161, 0.25);
    box-shadow: 0 2px 8px rgba(16, 113, 161, 0.1);
}

.page-assinar__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(16, 113, 161, 0.12);
    color: var(--primary-color);
}

.page-assinar__step.is-active .page-assinar__step-num {
    background: var(--primary-color);
    color: var(--white-color);
}

.page-assinar__body {
    padding: 2rem 1.5rem;
}

.page-assinar__aside {
    padding: 1.5rem;
    background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
    border-right: 1px solid rgba(16, 113, 161, 0.08);
    height: 100%;
}

.page-assinar__aside-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.page-assinar__aside p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.page-assinar__trust {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.page-assinar__trust li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #3d454c;
    padding: 0.35rem 0;
}

.page-assinar__trust i {
    color: #2d9f5e;
    margin-top: 0.1rem;
}

.page-assinar__wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-assinar__wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
    color: var(--white-color);
}

.page-assinar__form-wrap {
    padding: 1.5rem;
}

.page-assinar__form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

.page-assinar .form-group {
    margin-bottom: 1.15rem;
}

.page-assinar .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a4f;
    margin-bottom: 0.35rem;
}

.page-assinar .form-control {
    width: 100%;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(16, 113, 161, 0.18);
    border-radius: 0.65rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-assinar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 113, 161, 0.12);
    outline: none;
}

.page-assinar__error {
    display: none;
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 0.35rem;
}

.page-assinar__error.is-visible {
    display: block;
}

.page-assinar__captcha {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem;
    margin-bottom: 1.25rem;
    border-radius: 0.75rem;
    background: rgba(16, 113, 161, 0.04);
    border: 1px solid rgba(16, 113, 161, 0.1);
}

.page-assinar__captcha img {
    max-width: 56px;
    height: auto;
}

.page-assinar__captcha input {
    width: 100px;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(16, 113, 161, 0.18);
    border-radius: 0.55rem;
}

.page-assinar__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #f39333, #e07d1f);
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(243, 147, 51, 0.35);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.page-assinar__submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(243, 147, 51, 0.45);
}

.page-assinar__submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 991.98px) {
    .page-assinar__aside {
        border-right: none;
        border-bottom: 1px solid rgba(16, 113, 161, 0.08);
    }
}

/* ===== PAGE CONFIRMAÇÃO (assinar-plano-enviado) ===== */
body.page-confirm {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-confirm {
    padding: 3rem 0 5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
    min-height: 60vh;
}

.page-confirm__card {
    max-width: 42rem;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(16, 113, 161, 0.1);
}

.page-confirm__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(45, 159, 94, 0.15), rgba(45, 159, 94, 0.06));
    color: #2d9f5e;
    font-size: 2.5rem;
}

.page-confirm__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.page-confirm__lead {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.page-confirm__steps {
    text-align: left;
    margin: 0 auto 2rem;
    max-width: 28rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.85rem;
    background: rgba(16, 113, 161, 0.04);
    border: 1px solid rgba(16, 113, 161, 0.08);
}

.page-confirm__steps-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-confirm__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-confirm__steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #3d454c;
    line-height: 1.5;
}

.page-confirm__steps-list li i {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--primary-color);
}

.page-confirm__steps-list li.is-done i {
    color: #2d9f5e;
}

.page-confirm__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.page-confirm__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-confirm__btn--ghost {
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.25);
}

.page-confirm__btn--ghost:hover {
    background: rgba(16, 113, 161, 0.06);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.page-confirm__btn--wa {
    color: var(--white-color);
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.page-confirm__btn--wa:hover {
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

/* ===== PAGE BLOG ===== */
body.page-blog {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-blog-main {
    padding: 0 0 4rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.page-blog__breadcrumb {
    padding: 1.25rem 0 0;
}

.page-blog__breadcrumb .breadcrumb {
    margin: 0;
    padding: 0.5rem 1rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 999px;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(16, 113, 161, 0.06);
}

.page-blog__breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-blog__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #94a3b8;
}

.page-blog__intro {
    margin-bottom: 2rem;
}

.page-blog__intro h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.page-blog__intro p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0.5rem;
}

.page-blog__section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.page-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 113, 161, 0.12);
}

.page-blog-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8f0f5;
}

.page-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.page-blog-card:hover .page-blog-card__image img {
    transform: scale(1.04);
}

.page-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem;
}

.page-blog-card__cat {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary-color);
    background: rgba(16, 113, 161, 0.08);
    text-decoration: none;
}

.page-blog-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.page-blog-card__title a {
    color: var(--dark-color);
    text-decoration: none;
}

.page-blog-card__title a:hover {
    color: var(--primary-color);
}

.page-blog-card__excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.page-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.page-blog-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.page-blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.page-blog-card__more:hover {
    color: #0d5f87;
}

.page-blog-sidebar__box {
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.06);
}

.page-blog-sidebar__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.page-blog-sidebar__cats {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-sidebar__cats li {
    margin-bottom: 0.35rem;
}

.page-blog-sidebar__cats a {
    display: block;
    padding: 0.4rem 0.65rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.page-blog-sidebar__cats a:hover,
.page-blog-sidebar__cats a.is-active {
    background: rgba(16, 113, 161, 0.08);
    color: var(--primary-color);
    font-weight: 600;
}

.page-blog-sidebar .form-control {
    border: 1px solid rgba(16, 113, 161, 0.18);
    border-radius: 0.65rem 0 0 0.65rem;
    font-size: 0.9rem;
}

.page-blog-sidebar .input-group .btn-blog-search {
    border-radius: 0 0.65rem 0.65rem 0;
    background: linear-gradient(135deg, var(--primary-color), #3293b7);
    color: var(--white-color);
    border: none;
    font-weight: 600;
    padding: 0 1.15rem;
}

.page-blog-pagination .page-link {
    color: var(--primary-color);
    border: 1px solid rgba(16, 113, 161, 0.15);
    border-radius: 0.5rem;
    margin: 0 0.2rem;
    font-size: 0.875rem;
}

.page-blog-pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.page-blog-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(16, 113, 161, 0.1);
    font-size: 0.875rem;
    color: #64748b;
}

.page-blog-post__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.page-blog-post__meta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-blog-author {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    margin-top: 2.5rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(16, 113, 161, 0.06);
}

.page-blog-author__avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
    padding: 0.35rem;
    background: rgba(16, 113, 161, 0.06);
    border: 1px solid rgba(16, 113, 161, 0.1);
}

.page-blog-author__label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.page-blog-author__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.35rem;
}

.page-blog-author p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.page-hero--post .page-hero__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

/* ===== PAGE SEGMENT LANDING (SEO) ===== */
body.page-segment {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-seg-hero-visual {
    position: relative;
}

.page-seg-hero-visual__img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.page-seg-challenges {
    display: grid;
    gap: 1rem;
}

.page-seg-challenge {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.35rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.page-seg-challenge:hover {
    border-color: rgba(16, 113, 161, 0.22);
    box-shadow: 0 8px 24px rgba(16, 113, 161, 0.08);
}

.page-seg-challenge__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    font-size: 1.15rem;
}

.page-seg-challenge__icon--pain {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.06));
    color: #dc2626;
}

.page-seg-challenge h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.35rem;
}

.page-seg-challenge p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

.page-seg-deploy {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.page-seg-deploy__card {
    padding: 2rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(16, 113, 161, 0.06);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.page-seg-deploy__card:hover {
    border-color: rgba(16, 113, 161, 0.22);
    box-shadow: 0 12px 32px rgba(16, 113, 161, 0.1);
    transform: translateY(-2px);
}

.page-seg-deploy__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.page-seg-deploy__icon--local {
    background: linear-gradient(135deg, #059669, #047857);
}

.page-seg-deploy__card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.page-seg-deploy__subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.page-seg-deploy__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-seg-deploy__card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.65rem;
}

.page-seg-deploy__card ul i {
    color: var(--success-color);
    margin-top: 0.15rem;
}

.page-seg-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.page-seg-step {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1rem;
}

.page-seg-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-bottom: 1rem;
}

.page-seg-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.page-seg-step p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

.page-seg-faq {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

@media (max-width: 991.98px) {
    .page-seg-deploy {
        grid-template-columns: 1fr;
    }

    .page-seg-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .page-seg-steps {
        grid-template-columns: 1fr;
    }
}

/* Sticky section index — long ERP landing pages */
.page-seg-index {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(16, 113, 161, 0.1);
    padding: 0.65rem 0;
}

.page-seg-index__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.page-seg-index__track::-webkit-scrollbar {
    display: none;
}

.page-seg-index__track a {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    background: rgba(16, 113, 161, 0.06);
    border: 1px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.page-seg-index__track a:hover {
    color: var(--primary-color);
    background: rgba(16, 113, 161, 0.1);
    border-color: rgba(16, 113, 161, 0.15);
}

.page-seg-module-card {
    padding: 1.5rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1rem;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.page-seg-module-card:hover {
    border-color: rgba(16, 113, 161, 0.22);
    box-shadow: 0 12px 32px rgba(16, 113, 161, 0.1);
    transform: translateY(-2px);
}

.page-seg-module-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.page-seg-module-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.page-seg-module-card__subtitle {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.page-seg-module-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-seg-module-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.page-seg-module-card ul i {
    color: var(--success-color);
    margin-top: 0.1rem;
}

.page-seg-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 991.98px) {
    .page-seg-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .page-seg-modules-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE LEGAL (política de privacidade) ===== */
body.page-legal-doc {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-hero--compact {
    padding-bottom: 2.5rem;
}

.page-hero--compact .page-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-legal {
    padding: 3rem 0 5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.page-legal__content {
    max-width: 42rem;
    margin: 0 auto;
    padding: 2rem 1.75rem;
    background: var(--white-color);
    border: 1px solid rgba(16, 113, 161, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(16, 113, 161, 0.08);
}

.page-legal__content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0 0.75rem;
}

.page-legal__content h2:first-of-type {
    margin-top: 0;
}

.page-legal__content p,
.page-legal__content li {
    color: #475569;
    line-height: 1.75;
}

.page-legal__content ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.page-legal__content a {
    color: var(--primary-color);
    font-weight: 600;
}

.page-legal__back {
    margin-top: 2.5rem;
    margin-bottom: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(16, 113, 161, 0.1);
}

/* Long-form SEO content — segment landing pages */
.page-seg-prose__inner {
    max-width: 48rem;
    margin: 0 auto;
}

.page-seg-prose h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

.page-seg-prose h2:first-child {
    margin-top: 0;
}

.page-seg-prose h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1.75rem 0 0.65rem;
}

.page-seg-prose p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-seg-prose ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.page-seg-prose ul li {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 0.35rem;
}

.page-seg-prose a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== ACESSIBILIDADE — foco visível ===== */
.home-header__link:focus-visible,
.home-header__cta:focus-visible,
.home-header__toggle:focus-visible,
.home-header__dropdown-link:focus-visible,
.home-footer a:focus-visible,
.home-footer__top:focus-visible,
.home-cta__btn:focus-visible,
.page-hero__actions .btn:focus-visible,
.whatsapp-float:focus-visible,
.page-seg-index a:focus-visible {
    outline: 2px solid var(--secondary-color, #0ea5e9);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.25);
}