:root {
    --primary-blue: #0056D2;
    --dark-blue: #002B6B;
    --light-blue: #EDF5FF;
    --accent-orange: #FF6B00;
    --text-dark: #1A1F2C;
    --text-gray: #5E6C84;
    --white: #FFFFFF;
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --section-padding: 100px 0;
    --shadow-card: 0 15px 50px rgba(0, 86, 210, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 86, 210, 0.15);
}
body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: #FAFBFF;
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -0.5px; color: var(--text-dark); }
.text-primary-blue { color: var(--primary-blue) !important; }
.text-accent { color: var(--accent-orange) !important; }
.bg-light-blue { background-color: var(--light-blue); }
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    z-index: 999999999;
}
.navbar-brand { font-size: 1.8rem; color: var(--dark-blue) !important; font-weight: 800; }
.nav-logo { width: 180px; }
.nav-link { 
    color: var(--text-dark) !important; 
    font-weight: 600; 
    margin: 0 10px; 
    transition: color 0.3s; 
}
.nav-link:hover { color: var(--primary-blue) !important; }
@media (max-width: 991.98px) {
    .offcanvas {
        background-color: #ffffff !important;
        height: 100vh;
    }
    .offcanvas-header {
        border-bottom: 1px solid #f0f0f0;
        padding: 1.5rem;
    }
    .offcanvas-body {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 0;
        border-bottom: 1px solid #f8f9fa;
        display: block;
        margin: 0;
    }
    .btn-cta {
        width: 100%;
        margin-top: 20px;
        display: block;
        text-align: center;
    }
    .phone-link {
        justify-content: center;
        margin-top: 10px;
        padding: 10px 0;
    }
}
@media (min-width: 992px) {
    .offcanvas {
        background-color: transparent !important;
        box-shadow: none !important;
        flex-grow: 1;
        visibility: visible !important;
        transform: none !important;
    }
    .offcanvas-header { display: none; }
    .offcanvas-body {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        overflow: visible;
    }
    .navbar-nav {
        margin: 0 auto;
    }
}
.btn-cta {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8F00 100%);
    color: white; border: none; padding: 12px 30px; border-radius: 50px;
    font-weight: 700; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3); transition: all 0.3s;
    text-decoration: none;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4); color: white; }
.hero-section {
    background: linear-gradient(120deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    padding: 120px 0 160px; 
    position: relative; color: white; overflow: hidden;
}
.hero-pattern {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.3;
}
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.valuation-box {
    background: white; border-radius: 20px; padding: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25); position: relative; z-index: 10;
}
.form-select, .form-control {
    border: 2px solid #EEF2F6; padding: 15px; border-radius: 12px;
    font-weight: 500; background-color: #F8FAFC;
}
.form-select:focus, .form-control:focus {
    border-color: var(--primary-blue); background-color: white; box-shadow: 0 0 0 4px rgba(0, 86, 210, 0.1);
}
.trust-banner { margin-top: -60px; position: relative; z-index: 20; }
.trust-card {
    background: white; border-radius: 16px; padding: 30px;
    box-shadow: var(--shadow-card); display: flex; justify-content: space-around; flex-wrap: wrap;
}
.trust-item { text-align: center; padding: 10px 20px; }
.trust-item h4 { font-size: 2rem; color: var(--primary-blue); margin: 0; }
.trust-item span { font-size: 0.9rem; color: var(--text-gray); font-weight: 700; text-transform: uppercase; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.section-padding { padding: var(--section-padding); }
.section-header { text-align: center; margin-bottom: 60px; }
.badge-custom {
    background-color: rgba(0, 86, 210, 0.1); color: var(--primary-blue);
    padding: 8px 16px; border-radius: 30px; font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; margin-bottom: 15px; display: inline-block;
}
.img-rounded-lg { border-radius: 24px; box-shadow: var(--shadow-card); }
.feature-check-list li { margin-bottom: 15px; display: flex; align-items: start; font-size: 1.1rem; font-weight: 500; color: var(--text-dark); }
.feature-check-list i {
    color: #36B37E; margin-right: 15px; margin-top: 5px; font-size: 1.2rem;
    background: rgba(54, 179, 126, 0.1); padding: 5px; border-radius: 50%;
}
.tech-card {
    background: var(--dark-blue); color: white; border-radius: 30px;
    padding: 80px; position: relative; overflow: hidden;
}
.tech-bg-shape {
    position: absolute; right: -10%; bottom: -50%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}
.process-step { text-align: center; padding: 20px; position: relative; }
.step-circle {
    width: 80px; height: 80px; background: white; border: 3px solid var(--primary-blue);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; color: var(--primary-blue);
    margin: 0 auto 25px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); position: relative; z-index: 2;
}
.step-line {
    position: absolute; top: 60px; left: 50%; width: 100%; height: 3px;
    background-color: #E0E6ED; z-index: 1; display: none;
}
@media(min-width: 992px) { .step-line { display: block; } .col-lg-3:last-child .step-line { display: none; } }
.comparison-table { background: white; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid #eee; }
.comparison-table th { padding: 25px; font-size: 1.2rem; border-bottom: 2px solid #eee; background: #fff; color: var(--dark-blue); }
.comparison-table td { padding: 20px 25px; font-size: 1.05rem; border-bottom: 1px solid #f4f5f7; vertical-align: middle; }
.otomium-col {
    background-color: #F0F7FF; border-left: 2px solid var(--primary-blue);
    border-right: 2px solid var(--primary-blue); font-weight: 700; color: var(--primary-blue); position: relative;
}
.otomium-header { background-color: var(--primary-blue) !important; color: white !important; }
.recommended-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent-orange); color: white; font-size: 0.7rem;
    padding: 4px 12px; border-radius: 20px; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.seo-block { background-color: var(--white); padding: 80px 0; border-top: 1px solid #eee; }
.seo-content p { color: var(--text-gray); font-size: 1rem; line-height: 1.8; margin-bottom: 25px; }
.text-warning { color: #FF8F00 !important; }
footer { background-color: var(--dark-blue); color: #8fa6c7; padding: 80px 0 30px; }
footer h5 { color: white; margin-bottom: 25px; }
footer a { color: #8fa6c7; text-decoration: none; transition: 0.3s; margin-bottom: 10px; display: block; }
footer a:hover { color: white; padding-left: 5px; }
@media (max-width: 991px) {
    .hero-text h1 { font-size: 2.5rem; }
    .trust-item { width: 50%; border: none; margin-bottom: 20px; }
    .tech-card { padding: 40px 30px; }
    .section-padding { padding: 60px 0; }
}


.blog-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.blog-card-thumb {
    display: block;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.03);
}

.blog-card-body {
    padding: 22px 22px 20px;
}

.blog-meta {
    font-size: 0.85rem;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary-blue);
}

.blog-readmore {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-blue);
    text-decoration: none;
}

.blog-readmore:hover {
    text-decoration: underline;
}

.blog-sidebar-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: var(--shadow-card);
}

.blog-sidebar-link {
    color: var(--text-dark);
}

.blog-sidebar-link:hover {
    color: var(--primary-blue);
}

.whatsapp-button {
    position: fixed;
    right: 10px;
    bottom: 80px;
    z-index: 9000;
}