:root {
    --color-primary: #0b5ed7;
    --color-primary-dark: #063b83;
    --color-ink: #122033;
    --color-muted: #5e6a7d;
    --color-soft: #f4f8fc;
    --color-border: #dfe7f1;
    --color-success: #168a52;
    --shadow-sm: 0 10px 24px rgba(18, 32, 51, .08);
    --shadow-md: 0 18px 42px rgba(18, 32, 51, .12);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-ink);
    background: #fff;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
    text-decoration: none;
}

.site-header {
    box-shadow: 0 8px 24px rgba(18, 32, 51, .06);
}

.navbar {
    min-height: 76px;
}

.navbar-brand {
    color: var(--color-ink);
    font-weight: 750;
    font-size: 1.12rem;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    flex: 0 0 auto;
}

.brand-logo {
    width: auto;
    max-width: 400px;
    max-height: 110px;
    object-fit: contain;
}

.footer-logo {
    max-width: 180px;
    max-height: 56px;
}

.nav-link {
    color: #25364b;
    font-weight: 600;
    padding-inline: .85rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.btn {
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}

.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: #a9c8f4;
}

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

.hero-section {
    padding: 92px 0 72px;
    background: linear-gradient(135deg, #f7fbff 0%, #edf6ff 44%, #fff 100%);
    overflow: hidden;
}

.hero-section h1,
.page-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--color-ink);
}

.hero-subtitle {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--color-muted);
    font-size: 1.2rem;
    line-height: 1.7;
}

.section-kicker {
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 680px;
    margin-top: 32px;
}

.hero-trust div {
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    font-size: 1.15rem;
}

.hero-trust span {
    color: var(--color-muted);
    font-size: .92rem;
}

.hero-dashboard {
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 8px;
    padding: 22px;
    box-shadow: var(--shadow-md);
    animation: floatDashboard 5s ease-in-out infinite;
}

.dashboard-top {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.dashboard-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cfd9e6;
}

.dashboard-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-card.highlight {
    background: var(--color-primary-dark);
    color: #fff;
    border-color: var(--color-primary-dark);
}

.dashboard-card strong {
    display: block;
    font-size: 1.8rem;
}

.dashboard-card i {
    font-size: 2rem;
}

.small-label {
    display: block;
    color: rgba(255, 255, 255, .76);
    font-size: .88rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.dashboard-grid div,
.dashboard-list div {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
}

.dashboard-grid div {
    min-height: 92px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.dashboard-grid i {
    color: var(--color-primary);
    font-size: 1.35rem;
}

.dashboard-grid span {
    font-weight: 700;
}

.dashboard-list {
    display: grid;
    gap: 10px;
}

.dashboard-list div {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-muted);
}

.dashboard-list strong {
    color: var(--color-ink);
}

.section {
    padding: 76px 0;
}

.section-soft {
    background: var(--color-soft);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-header h2,
.cta-box h2,
.section h2 {
    color: var(--color-ink);
    font-weight: 800;
    line-height: 1.18;
}

.section-header p,
.lead-text,
.section p {
    color: var(--color-muted);
    line-height: 1.75;
}

.service-card,
.solution-card,
.product-card,
.portfolio-card {
    height: 100%;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover,
.solution-card:hover,
.product-card:hover,
.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card > i,
.solution-card > i,
.portfolio-card > i,
.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: var(--color-primary);
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.service-card h3,
.solution-card h3,
.process-step h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-card.tall {
    min-height: 250px;
}

.solution-card a {
    color: var(--color-primary);
    font-weight: 800;
}

.feature-item {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 84px;
}

.feature-item i {
    color: var(--color-success);
    font-size: 1.25rem;
}

.feature-item span {
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-step {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.process-step span {
    color: var(--color-primary);
    font-weight: 900;
    font-size: 1.45rem;
}

.cta-section {
    padding: 76px 0;
}

.cta-box {
    background: var(--color-primary-dark);
    color: #fff;
    border-radius: 8px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-box .section-kicker,
.cta-box h2 {
    color: #fff;
}

.page-hero {
    padding: 78px 0 58px;
    background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
    border-bottom: 1px solid var(--color-border);
}

.page-hero p {
    max-width: 780px;
    margin: 18px 0 0;
    color: var(--color-muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.about-panel,
.contact-info-panel,
.form-panel {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.about-panel {
    display: grid;
    gap: 14px;
}

.about-metric {
    padding: 20px;
    border-radius: 8px;
    background: var(--color-soft);
}

.about-metric strong,
.about-metric span {
    display: block;
}

.about-metric strong {
    color: var(--color-primary-dark);
    font-size: 1.35rem;
}

.about-metric span {
    color: var(--color-muted);
}

.product-card h2,
.portfolio-card h2 {
    font-size: 1.18rem;
    font-weight: 800;
}

.product-card ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
    display: grid;
    gap: 10px;
}

.product-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #34455c;
}

.product-card li i {
    color: var(--color-success);
    margin-top: 2px;
}

.portfolio-card span {
    display: inline-flex;
    margin-top: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #eef5ff;
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: .85rem;
}

.stat-card,
.pricing-card,
.testimonial-slide {
    height: 100%;
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.stat-card strong {
    display: block;
    color: var(--color-primary);
    font-size: 2.2rem;
    font-weight: 900;
}

.stat-card span,
.pricing-card p,
.testimonial-slide span {
    color: var(--color-muted);
}

.testimonial-slide {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide p {
    color: var(--color-ink);
    font-size: 1.15rem;
}

.stars {
    color: #f5a623;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.pricing-card h3 {
    font-weight: 800;
}

.pricing-card strong {
    color: var(--color-primary-dark);
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tech-list span {
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-primary-dark);
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    max-width: 920px;
    margin: 0 auto;
    color: var(--color-muted);
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--color-ink);
    font-size: 1.35rem;
    margin-top: 28px;
}

.faq-accordion .accordion-item {
    border-color: var(--color-border);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin: 18px 0;
}

.newsletter-form .form-control {
    min-height: 42px;
}

@keyframes floatDashboard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.contact-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #34455c;
    font-weight: 650;
}

.contact-list i {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: #eaf3ff;
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: 8px;
    border-color: #cfd9e6;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 .2rem rgba(11, 94, 215, .12);
}

textarea.form-control {
    min-height: 140px;
}

.form-label {
    font-weight: 750;
    color: #25364b;
}

.text-danger {
    font-size: .9rem;
}

.alert {
    border-radius: 8px;
}

.site-footer {
    background: #0f1f34;
    color: #dce7f5;
    padding: 56px 0 24px;
}

.footer-title,
.footer-heading {
    color: #fff;
    font-weight: 800;
}

.footer-title {
    font-size: 1.1rem;
}

.footer-heading {
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-text,
.footer-links,
.footer-contact {
    color: #aebdd0;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #aebdd0;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 36px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #aebdd0;
    font-size: .92rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 14px 30px rgba(37, 211, 102, .35);
    z-index: 1040;
}

.whatsapp-float:hover {
    color: #fff;
    background: #1ebe5d;
}

@media (max-width: 991.98px) {
    .hero-section,
    .page-hero {
        padding-top: 58px;
    }

    .hero-trust,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .brand-logo {
        max-width: 180px;
        max-height: 52px;
    }

    .hero-section h1,
    .page-hero h1 {
        font-size: 2.25rem;
    }

    .hero-actions .btn,
    .cta-box .btn {
        width: 100%;
    }

    .hero-trust,
    .dashboard-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 56px 0;
    }

    .service-card,
    .solution-card,
    .product-card,
    .portfolio-card,
    .about-panel,
    .contact-info-panel,
    .form-panel,
    .cta-box {
        padding: 22px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

.admin-body {
    background: #f3f6f9;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.admin-sidebar {
    background: #0f1f34;
    color: #fff;
    padding: 22px;
}

.admin-brand {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    margin-bottom: 28px;
}

.admin-nav {
    display: grid;
    gap: 6px;
}

.admin-nav a {
    color: #c8d4e3;
    border-radius: 8px;
    padding: 11px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.admin-main {
    min-width: 0;
}

.admin-topbar {
    min-height: 86px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-topbar h1 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
}

.admin-content {
    padding: 28px;
}

.admin-card,
.admin-widget {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.lead-notes-cell {
    min-width: 280px;
}

.admin-actions-cell {
    min-width: 210px;
}

.admin-card h2 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.admin-widget span {
    color: var(--color-muted);
    font-weight: 700;
}

.admin-widget strong {
    display: block;
    color: var(--color-primary-dark);
    font-size: 2rem;
    margin-top: 8px;
}

.monthly-bar {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.monthly-bar div {
    height: 9px;
    border-radius: 99px;
    background: #e5edf7;
    overflow: hidden;
}

.monthly-bar i {
    display: block;
    height: 100%;
    background: var(--color-primary);
}

.admin-login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0f1f34, #0b5ed7);
    padding: 20px;
}

.login-card {
    width: min(440px, 100%);
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.login-card h1 {
    font-size: 1.7rem;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

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

    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}
