@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.015em;
}

/* Background Gradient Profesional Azul Oscuro Elegante */
.bg-gradient-sky {
    background: linear-gradient(135deg, #0e1628 0%, #1c2a48 100%);
}

/* Usability Tweaks: Enhanced focus for accessibility and modern active states */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2) !important;
}

/* Micro-animations and polish: hover lift effect */
.hover-lift {
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}

/* Links color tweaks without layout shift */
.hover-primary {
    transition: color 0.2s ease;
}
.hover-primary:hover {
    color: #0d6efd !important;
}

/* Text kerning support SEO text layouts */
.tracking-tight {
    letter-spacing: -0.04em;
}
.tracking-wider {
    letter-spacing: 0.1em;
}

/* Navbar enhancement */
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.15s ease-in-out;
}

.nav-link.active {
    color: #fff !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 3px 3px 0 0;
}

/* Forms: Float label spacing fixed */
.form-floating > .form-control-plaintext:focus, .form-floating > .form-control:focus {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}

/* Portfolio */
.portfolio-hero {
    position: relative;
    overflow: hidden;
}

.portfolio-hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -45% 35%;
    height: 260px;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.28), rgba(13, 110, 253, 0));
    pointer-events: none;
}

.portfolio-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .85rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #9eeaf9;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portfolio-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: .45rem .75rem;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .86);
    font-size: .85rem;
    backdrop-filter: blur(12px);
}

.portfolio-section {
    background:
        linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.portfolio-card {
    border-radius: 8px;
    background: #fff;
    transition: transform .28s ease, box-shadow .28s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.35rem 3.5rem rgba(15, 23, 42, .16) !important;
}

.portfolio-image-link {
    display: block;
    background: transparent;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.portfolio-image-wrap {
    position: relative;
    height: 255px;
    margin: 0;
    overflow: hidden;
    background: #0f172a;
}

.portfolio-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform .65s ease, filter .65s ease;
}

.portfolio-card:hover .portfolio-image-wrap img {
    transform: scale(1.11);
    filter: saturate(1.14) contrast(1.05);
}

.portfolio-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0) 25%, rgba(15, 23, 42, .72) 100%),
        linear-gradient(135deg, rgba(13, 110, 253, .22), rgba(16, 185, 129, .16));
    opacity: .54;
    transition: opacity .35s ease;
}

.portfolio-card:hover .portfolio-image-wrap::before {
    opacity: .86;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: #fff;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .35s ease, transform .35s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #0d6efd;
    font-size: 1.45rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .24);
}

.portfolio-overlay-text {
    padding: .5rem .9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, .7);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portfolio-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: rgba(255, 255, 255, .72);
    font-size: 4rem;
    background: linear-gradient(135deg, #13213a, #0d6efd);
}

.portfolio-category {
    border-radius: 999px;
    padding: .4rem .75rem;
    background: #e8f2ff;
    color: #0b5ed7;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portfolio-title {
    line-height: 1.28;
}

.portfolio-excerpt {
    display: -webkit-box;
    min-height: 3.8rem;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.portfolio-description {
    max-height: 12rem;
    overflow: hidden;
    mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}

.custom-list-icons ul {
    list-style: none !important;
    padding-left: 0;
    margin: 0;
}

.custom-list-icons li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.custom-list-icons li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: -2px;
    color: #10b981;
    font-size: 1.05rem;
    font-weight: 900;
}

.custom-list-icons h4 {
    font-size: .78rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
    text-align: center;
}

.portfolio-pagination .page-link {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #172033;
    box-shadow: 0 .35rem 1rem rgba(15, 23, 42, .08);
}

.portfolio-pagination .active .page-link {
    background: #0d6efd;
    color: #fff;
}

.portfolio-pagination .portfolio-dots {
    background: transparent;
    box-shadow: none;
}

.portfolio-cta {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1rem 3rem rgba(15, 23, 42, .08);
}

.portfolio-cta p {
    max-width: 620px;
}

.portfolio-modal .modal-content {
    border-radius: 10px;
    max-height: calc(100vh - 2rem);
    box-shadow: 0 2rem 5rem rgba(15, 23, 42, .28);
}

.portfolio-modal .modal-header {
    flex-shrink: 0;
    padding: 1.5rem 1.75rem;
    background: #fff;
}

.portfolio-modal .modal-body {
    overflow: hidden;
}

.portfolio-modal .modal-footer {
    flex-shrink: 0;
    padding: 1.25rem 1.75rem 1.5rem;
    background: #f8fafc;
}

.portfolio-modal-image {
    position: relative;
    min-height: 420px;
    height: 100%;
    background: #0f172a;
}

.portfolio-modal-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(15, 23, 42, .42) 100%);
    pointer-events: none;
}

.portfolio-modal-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: 68vh;
    object-fit: cover;
    display: block;
}

.portfolio-modal-details {
    max-height: 68vh;
    padding: 2rem;
    overflow: auto;
}

.portfolio-modal-details h4 {
    margin-bottom: 1rem;
    color: #172033;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portfolio-modal-details ul,
.portfolio-modal-details ol {
    margin-bottom: 0;
}

.portfolio-modal-details li {
    color: #475569;
    font-size: .95rem;
    line-height: 1.65;
}

@media (max-width: 575.98px) {
    .portfolio-image-wrap {
        height: 230px;
    }

    .portfolio-kicker {
        align-items: flex-start;
        border-radius: 8px;
    }

    .portfolio-modal-image img {
        min-height: 220px;
        max-height: 260px;
    }

    .portfolio-modal-details {
        max-height: 45vh;
        padding: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .portfolio-modal .modal-body {
        overflow: auto;
    }

    .portfolio-modal-image,
    .portfolio-modal-image img {
        min-height: 280px;
        max-height: 340px;
    }

    .portfolio-modal-details {
        max-height: none;
    }
}

/* Services */
.services-hero {
    position: relative;
    overflow: hidden;
}

.services-hero::after {
    content: '';
    position: absolute;
    right: -8%;
    bottom: -30%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(13, 202, 240, .22), rgba(13, 110, 253, 0) 68%);
    pointer-events: none;
}

.services-kicker {
    display: inline-flex;
    padding: .45rem .85rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #9eeaf9;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.services-hero-panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: .75rem;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.services-panel-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.services-panel-row:last-child {
    border-bottom: 0;
}

.services-panel-row span {
    color: rgba(255, 255, 255, .62);
}

.services-panel-row strong {
    color: #fff;
    text-align: right;
}

.services-section {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.services-section-heading {
    max-width: 760px;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 8px;
    padding: 1.6rem;
    background: #fff;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 110, 253, .18);
    box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, .12);
}

.service-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    background: #e8f2ff;
    color: #0d6efd;
    font-size: 1.55rem;
}

.service-list {
    display: grid;
    gap: .65rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 1.55rem;
    color: #475569;
    font-size: .94rem;
}

.service-list li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: -.08rem;
    color: #10b981;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: auto;
    color: #0d6efd;
    font-weight: 800;
    text-decoration: none;
}

.service-link:hover {
    color: #0a58ca;
}

.services-band {
    background: linear-gradient(135deg, #0e1628 0%, #16233d 100%);
}

.process-step {
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .72);
}

.process-step span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #0dcaf0;
    color: #08111f;
    font-weight: 900;
}

.process-step h3 {
    color: #fff;
}

.services-checks {
    display: grid;
    gap: .85rem;
}

.services-checks p {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin: 0;
    color: #475569;
}

.services-checks i {
    color: #10b981;
    font-size: 1.25rem;
    line-height: 1.25;
}

.services-cta-panel {
    border-radius: 8px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 1rem 3rem rgba(15, 23, 42, .08);
}

@media (max-width: 575.98px) {
    .services-panel-row {
        flex-direction: column;
        gap: .25rem;
    }

    .services-panel-row strong {
        text-align: left;
    }

    .services-cta-panel {
        padding: 1.5rem;
    }
}

/* About */
.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    left: -12%;
    bottom: -35%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(13, 202, 240, .22), rgba(13, 110, 253, 0) 68%);
    pointer-events: none;
}

.about-kicker {
    display: inline-flex;
    padding: .45rem .85rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #9eeaf9;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-photo-wrap {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: min(340px, 82vw);
    aspect-ratio: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .22);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.about-section {
    background: #fff;
}

.about-copy {
    font-size: 1.04rem;
    line-height: 1.85;
}

.about-stack-card,
.about-timeline-card,
.about-principle-card,
.about-cta {
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .06);
}

.about-stack-card {
    padding: 1.75rem;
}

.about-stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.about-stack-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .5rem .8rem;
    background: #e8f2ff;
    color: #0b5ed7;
    font-size: .82rem;
    font-weight: 800;
}

.about-stack-note {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(15, 23, 42, .08);
    color: #475569;
}

.about-stack-note i {
    color: #10b981;
    font-size: 1.25rem;
    line-height: 1.25;
}

.about-timeline-card,
.about-principle-card {
    padding: 1.5rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-timeline-card:hover,
.about-principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, .12);
}

.about-timeline-card span {
    display: inline-flex;
    margin-bottom: 1rem;
    border-radius: 999px;
    padding: .45rem .8rem;
    background: #0d6efd;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.about-principle-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    background: #e8f2ff;
    color: #0d6efd;
    font-size: 1.55rem;
}

.about-cta {
    padding: 2.25rem;
}

.about-cta p {
    max-width: 680px;
}

@media (max-width: 575.98px) {
    .about-cta {
        padding: 1.5rem;
    }
}

/* Products / Scripts */
.products-hero {
    position: relative;
    overflow: hidden;
}

.products-hero::after {
    content: '';
    position: absolute;
    right: -10%;
    bottom: -42%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(13, 202, 240, .22), rgba(13, 110, 253, 0) 68%);
    pointer-events: none;
}

.products-kicker {
    display: inline-flex;
    padding: .45rem .85rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #9eeaf9;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.products-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: .45rem .75rem;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .86);
    font-size: .85rem;
    backdrop-filter: blur(12px);
}

.products-stats {
    position: relative;
    z-index: 1;
    display: grid;
    gap: .75rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: .75rem;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.products-stats div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 1rem;
}

.products-stats div:last-child {
    border-bottom: 0;
}

.products-stats strong {
    color: #fff;
    font-size: 1.75rem;
}

.products-stats span {
    color: rgba(255, 255, 255, .68);
    font-weight: 700;
}

.products-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.products-toolbar {
    display: grid;
    gap: 1.25rem;
}

.products-toolbar-copy {
    max-width: 100%;
}

.products-toolbar-copy h2 {
    font-size: clamp(2rem, 2.7vw, 2.65rem);
    white-space: nowrap;
}

.products-filter {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: .6rem;
    justify-content: flex-end;
    white-space: nowrap;
}

.products-filter a {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border: 1px solid rgba(13, 110, 253, .18);
    border-radius: 999px;
    padding: .65rem .95rem;
    background: #fff;
    color: #0d6efd;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 .45rem 1.25rem rgba(15, 23, 42, .06);
}

.products-filter a span {
    display: grid;
    min-width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border-radius: 999px;
    background: #e8f2ff;
    color: #0b5ed7;
    font-size: .75rem;
}

.products-filter a.active {
    background: #0d6efd;
    color: #fff;
}

.products-filter a.active span {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.products-filter a.active.success {
    background: #198754;
    border-color: #198754;
}

.products-filter a.active.info {
    background: #0dcaf0;
    border-color: #0dcaf0;
    color: #06111f;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, .13);
}

.product-image {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
    background: #0f172a;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease, filter .55s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: 999px;
    padding: .55rem .8rem;
    font-size: .82rem;
    font-weight: 900;
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .2);
}

.product-badge.free {
    background: #198754;
    color: #fff;
}

.product-badge.premium {
    background: #0dcaf0;
    color: #06111f;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.5rem;
}

.product-category {
    border-radius: 999px;
    padding: .38rem .7rem;
    background: #e8f2ff;
    color: #0b5ed7;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-date {
    color: #64748b;
    font-size: .78rem;
    white-space: nowrap;
}

.product-actions {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

@media (max-width: 575.98px) {
    .product-image {
        height: 210px;
    }

    .products-filter {
        width: 100%;
        flex-direction: column;
        justify-content: stretch;
        white-space: normal;
    }

    .products-filter a {
        flex: 1;
        justify-content: center;
    }

    .products-toolbar-copy h2 {
        white-space: normal;
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .products-filter {
        width: 100%;
        justify-content: flex-start;
    }

    .products-toolbar-copy h2 {
        white-space: normal;
    }
}

/* Product detail */
.product-detail-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.product-detail-kicker {
    display: inline-flex;
    border-radius: 999px;
    padding: .45rem .8rem;
    background: #e8f2ff;
    color: #0b5ed7;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-detail-image {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1rem 3rem rgba(15, 23, 42, .08);
}

.product-detail-image img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.product-demo-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.5rem;
}

.product-buy-card,
.product-side-card {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .07);
}

.product-buy-card {
    padding: 1.75rem;
}

.product-side-sticky {
    position: sticky;
    top: 100px;
}

.product-buy-card strong {
    color: #0f172a;
    font-size: 2rem;
    line-height: 1;
}

.product-buy-note {
    margin-top: 1rem;
    border-radius: 8px;
    padding: .9rem;
    background: rgba(255, 193, 7, .14);
    color: #3f3420;
    font-size: .86rem;
}

.product-sidebar-section,
.product-payment-methods {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.product-content {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
}

.product-content h2,
.product-content h3,
.product-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 800;
}

.product-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .08);
}

.product-side-stack {
    display: grid;
    gap: 1rem;
}

.product-side-card {
    padding: 1.35rem;
}

.product-side-card table th {
    color: #64748b;
    font-weight: 700;
}

.product-side-card table td {
    color: #0f172a;
    font-weight: 800;
    text-align: right;
}

.sidebar-check-list ul {
    list-style: none !important;
    padding-left: 0;
    margin-bottom: 0;
}

.sidebar-check-list ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}

.sidebar-check-list ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.sidebar-check-list.p-ul-check-danger ul li::before,
.sidebar-check-list .p-ul-check-danger ul li::before {
    content: "\F62A";
    color: #dc3545;
}

@media (max-width: 991.98px) {
    .product-side-sticky {
        position: static;
    }
}

/* Blog */
.blog-hero {
    position: relative;
    overflow: hidden;
}

.blog-hero::after {
    content: '';
    position: absolute;
    right: -10%;
    bottom: -42%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(13, 202, 240, .22), rgba(13, 110, 253, 0) 68%);
    pointer-events: none;
}

.blog-kicker {
    display: inline-flex;
    padding: .45rem .85rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #9eeaf9;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-hero-search {
    position: relative;
    z-index: 1;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.blog-hero-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: .95rem 1.15rem;
    background: transparent;
    color: #fff;
}

.blog-hero-search input::placeholder {
    color: rgba(255, 255, 255, .62);
}

.blog-hero-search button {
    border: 0;
    padding: 0 1.2rem;
    background: #0dcaf0;
    color: #06111f;
    font-size: 1.1rem;
}

.blog-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, .13);
}

.blog-card-image {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    background: #0f172a;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease, filter .55s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.blog-card-date {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    border-radius: 999px;
    padding: .45rem .7rem;
    background: rgba(15, 23, 42, .78);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
}

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.5rem;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    min-height: 1.7rem;
    margin-bottom: .9rem;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .35rem .65rem;
    background: #e8f2ff;
    color: #0b5ed7;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-tag.draft {
    background: rgba(255, 193, 7, .18);
    color: #7a5800;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, .08);
    color: #0d6efd;
    font-weight: 800;
    text-decoration: none;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 1rem;
}

.blog-widget {
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 8px;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .06);
}

.blog-category-list {
    display: grid;
    gap: .35rem;
}

.blog-category-list a {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    border-radius: 8px;
    padding: .65rem .75rem;
    color: #475569;
    text-decoration: none;
}

.blog-category-list a:hover,
.blog-category-list a.active {
    background: #e8f2ff;
    color: #0b5ed7;
}

.blog-category-list strong {
    display: grid;
    min-width: 1.75rem;
    height: 1.75rem;
    place-items: center;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: .75rem;
}

.blog-latest-list {
    display: grid;
    gap: 1rem;
}

.blog-latest-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    color: inherit;
    text-decoration: none;
}

.blog-latest-item img {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border-radius: 8px;
    object-fit: cover;
    background: #f8fafc;
}

.blog-latest-item strong {
    display: -webkit-box;
    overflow: hidden;
    color: #0f172a;
    font-size: .92rem;
    line-height: 1.32;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-latest-item small {
    display: inline-flex;
    margin-top: .3rem;
    color: #64748b;
    font-size: .75rem;
}

.blog-cta-widget {
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

@media (max-width: 991.98px) {
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .blog-card-image {
        height: 205px;
    }

    .blog-hero-search {
        border-radius: 8px;
    }
}

.blog-article-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.blog-article-heading {
    width: 100%;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem 1.2rem;
    color: #64748b;
}

.blog-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.blog-article-share {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .65rem;
}

.blog-article-share span {
    color: #64748b;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-article-share a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 50%;
    background: #fff;
    color: #475569;
    text-decoration: none;
}

.blog-article-share a:hover {
    color: #0d6efd;
    border-color: rgba(13, 110, 253, .25);
}

.blog-featured-image {
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    background: #f8fafc;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .07);
}

.blog-featured-image img {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    display: block;
}

.content-blog {
    color: #3d4a5c;
    font-size: 1.04rem;
    line-height: 1.85;
}

.content-blog h2,
.content-blog h3 {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 800;
}

.content-blog p {
    margin-bottom: 1.45rem;
}

.content-blog img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .08);
}

.content-blog pre,
.content-blog code {
    border-radius: .45rem;
    font-size: .9em;
    font-family: var(--bs-font-monospace);
}

.content-blog pre {
    position: relative;
    max-height: 460px;
    overflow: auto;
    padding: 1rem;
    background: #282c34;
    color: #e5e7eb;
}

.copy-code-btn {
    position: absolute;
    top: .5rem;
    right: .5rem;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    padding: .25rem .55rem;
    background: rgba(255, 255, 255, .1);
    color: #e5e7eb;
    font-size: .75rem;
    cursor: pointer;
}

.content-blog blockquote {
    margin: 2rem 0;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    color: #334155;
    font-style: italic;
}

.blog-author-box,
.blog-comments,
.blog-related {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.blog-author-box {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    border: 1px solid rgba(13, 110, 253, .12);
    border-radius: 8px;
    padding: 1.5rem;
    background: #f8fbff;
}

.blog-author-box img {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border-radius: 50%;
    background: #fff;
    padding: .35rem;
    box-shadow: 0 .5rem 1.5rem rgba(15, 23, 42, .08);
}

.blog-related-card {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .06);
}

.blog-related-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.blog-related-card div {
    padding: 1rem;
}

@media (max-width: 575.98px) {
    .blog-author-box {
        align-items: flex-start;
    }

    .blog-author-box img {
        display: none;
    }

    .blog-article-share {
        justify-content: flex-start;
    }
}

.home-slider-wrap {
    background: #0f172a;
}

.home-carousel,
.home-slide {
    position: relative;
    overflow: hidden;
}

.home-slide {
    min-height: 620px;
    background: #0f172a;
}

.home-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.home-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .94) 0%, rgba(15, 23, 42, .82) 42%, rgba(15, 23, 42, .42) 100%),
        linear-gradient(180deg, rgba(15, 23, 42, .18) 0%, rgba(15, 23, 42, .82) 100%);
}

.home-slide-content {
    position: relative;
    z-index: 2;
}

.min-vh-home-slide {
    min-height: 620px;
    padding: 5rem 0;
}

.home-slide-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.1rem;
    border: 1px solid rgba(103, 232, 249, .34);
    border-radius: 999px;
    padding: .5rem .85rem;
    background: rgba(8, 145, 178, .18);
    color: #9eeaf9;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.home-slide h2 {
    max-width: 820px;
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    font-weight: 900;
    line-height: 1.04;
}

.home-slide p {
    max-width: 760px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .78);
    font-size: 1.12rem;
    line-height: 1.75;
}

.home-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.home-carousel-control {
    width: 5rem;
}

.home-carousel-control .carousel-control-prev-icon,
.home-carousel-control .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, .62);
    background-size: 48%;
}

.home-carousel-indicators {
    margin-bottom: 1.4rem;
}

.home-carousel-indicators [data-bs-target] {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
}

.home-intro-strip {
    padding: 4.5rem 0;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, .07);
}

.home-intro-strip h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(1.6rem, 2.6vw, 2.45rem);
    font-weight: 900;
    line-height: 1.12;
}

.home-intro-strip p {
    margin: 1rem 0 1.4rem;
    color: #64748b;
    line-height: 1.7;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
    background:
        linear-gradient(135deg, rgba(240, 249, 255, .96) 0%, rgba(255, 255, 255, .98) 48%, rgba(236, 253, 245, .92) 100%);
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1rem;
    color: #0d6efd;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: #16c7df;
}

.home-hero h1 {
    max-width: 780px;
    margin-bottom: 1.3rem;
    color: #111827;
    font-size: clamp(2.45rem, 4.8vw, 4.75rem);
    font-weight: 900;
    line-height: 1.04;
}

.home-lead {
    max-width: 760px;
    margin-bottom: 2rem;
    color: #475569;
    font-size: 1.15rem;
    line-height: 1.75;
}

.home-actions,
.home-proof {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.home-proof {
    margin-top: 1.5rem;
    color: #64748b;
    font-size: .92rem;
}

.home-proof span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 999px;
    padding: .55rem .85rem;
    background: rgba(255, 255, 255, .72);
}

.home-proof strong {
    color: #0f172a;
}

.home-trust-panel {
    border: 1px solid rgba(13, 110, 253, .14);
    border-radius: 8px;
    padding: 1.4rem;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 1.5rem 4rem rgba(15, 23, 42, .11);
}

.home-panel-head {
    display: grid;
    gap: .3rem;
    margin-bottom: 1.1rem;
}

.home-panel-head span {
    color: #0d6efd;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-panel-head strong {
    color: #111827;
    font-size: 1.25rem;
    line-height: 1.25;
}

.home-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin-bottom: 1.2rem;
}

.home-stack-grid span {
    display: flex;
    align-items: center;
    gap: .55rem;
    min-height: 48px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: .75rem;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 800;
}

.home-stack-grid i {
    color: #0d6efd;
    font-size: 1.2rem;
}

.home-trust-panel p {
    color: #64748b;
    line-height: 1.65;
}

.home-panel-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #0d6efd;
    font-weight: 800;
    text-decoration: none;
}

.home-section {
    padding: 5rem 0;
}

.home-section-heading,
.home-products-header {
    margin-bottom: 2rem;
}

.home-section-heading span,
.home-products-header span,
.home-cta-inner span {
    display: inline-flex;
    margin-bottom: .55rem;
    color: #0d6efd;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-section-heading h2,
.home-products-header h2,
.home-why h2,
.home-cta-inner h2 {
    margin: 0;
    color: #111827;
    font-weight: 900;
    line-height: 1.12;
}

.home-section-heading h2 {
    max-width: 620px;
}

.home-path-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: 1.35rem;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-path-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, .22);
    box-shadow: 0 1rem 2.6rem rgba(15, 23, 42, .1);
}

.home-path-card > i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 1.35rem;
}

.home-path-card h3 {
    color: #111827;
    font-size: 1.05rem;
    font-weight: 900;
}

.home-path-card p {
    flex: 1;
    color: #64748b;
    line-height: 1.62;
}

.home-path-card span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #0d6efd;
    font-weight: 800;
}

.home-why {
    background: #f8fafc;
}

.home-why p {
    color: #64748b;
    font-size: 1.03rem;
    line-height: 1.75;
}

.home-benefit-list {
    display: grid;
    gap: 1rem;
}

.home-benefit-list div {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 1rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: 1.15rem;
    background: #fff;
}

.home-benefit-list i {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    grid-row: span 2;
    border-radius: 8px;
    background: #ecfeff;
    color: #0891b2;
    font-size: 1.35rem;
}

.home-benefit-list h3 {
    margin: 0 0 .35rem;
    color: #111827;
    font-size: 1.05rem;
    font-weight: 900;
}

.home-benefit-list p {
    margin: 0;
    color: #64748b;
    font-size: .95rem;
}

.home-products-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.home-product-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .06);
}

.home-product-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #f8fafc;
}

.home-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.home-product-card:hover .home-product-image img {
    transform: scale(1.06);
}

.home-product-image span {
    position: absolute;
    top: .8rem;
    right: .8rem;
    border-radius: 999px;
    padding: .35rem .7rem;
    background: #0d6efd;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.home-product-body {
    padding: 1rem;
}

.home-product-body h3 {
    display: -webkit-box;
    min-height: 3.2rem;
    overflow: hidden;
    margin-bottom: .6rem;
    color: #111827;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-product-body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #64748b;
    font-size: .9rem;
    line-height: 1.55;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.home-cta {
    padding: 4.5rem 0;
    background: #0f172a;
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, .28), rgba(8, 145, 178, .18));
    color: #fff;
}

.home-cta-inner span {
    color: #67e8f9;
}

.home-cta-inner h2 {
    max-width: 760px;
    color: #fff;
}

.home-cta-inner p {
    max-width: 720px;
    margin: .85rem 0 0;
    color: rgba(255, 255, 255, .76);
}

@media (max-width: 991.98px) {
    .home-slide,
    .min-vh-home-slide {
        min-height: 570px;
    }

    .home-intro-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .home-hero {
        padding: 4.5rem 0 4rem;
    }

    .home-products-header,
    .home-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .home-slide,
    .min-vh-home-slide {
        min-height: 600px;
    }

    .min-vh-home-slide {
        padding: 4rem 0 4.8rem;
    }

    .home-slide-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, .86) 0%, rgba(15, 23, 42, .94) 100%);
    }

    .home-slide h2 {
        font-size: 2.25rem;
    }

    .home-slide p {
        font-size: 1rem;
    }

    .home-slide-actions .btn {
        width: 100%;
    }

    .home-carousel-control {
        display: none;
    }

    .home-hero h1 {
        font-size: 2.35rem;
    }

    .home-actions .btn {
        width: 100%;
    }

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

    .home-benefit-list div {
        grid-template-columns: 1fr;
    }

    .home-benefit-list i {
        grid-row: auto;
        margin-bottom: .8rem;
    }

    .home-section {
        padding: 3.5rem 0;
    }
}

.contact-hero {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.contact-breadcrumb {
    margin-bottom: 2.5rem;
}

.contact-breadcrumb a {
    color: #0d6efd;
    text-decoration: none;
}

.contact-kicker,
.contact-section-label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .9rem;
    color: #0d6efd;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-hero h1 {
    max-width: 760px;
    margin-bottom: 1.2rem;
    color: #111827;
    font-size: clamp(2.35rem, 4.6vw, 4.4rem);
    font-weight: 900;
    line-height: 1.05;
}

.contact-hero p {
    max-width: 720px;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.75;
}

.contact-mail-card,
.contact-panel,
.contact-link-card {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 .85rem 2.4rem rgba(15, 23, 42, .07);
}

.contact-mail-card {
    padding: 1.5rem;
}

.contact-mail-card > span {
    display: inline-flex;
    margin-bottom: .7rem;
    color: #0d6efd;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-mail-card h2,
.contact-panel h2,
.contact-links h2 {
    margin-bottom: .85rem;
    color: #111827;
    font-weight: 900;
    line-height: 1.16;
}

.contact-mail-card p,
.contact-panel p {
    color: #64748b;
    line-height: 1.7;
}

.contact-email-box {
    display: grid;
    gap: .9rem;
    margin: 1.25rem 0 1rem;
    border: 1px dashed rgba(13, 110, 253, .32);
    border-radius: 8px;
    padding: 1rem;
    background: #f8fbff;
}

.contact-email-box strong {
    overflow-wrap: anywhere;
    color: #0f172a;
    font-size: 1rem;
}

.contact-mail-card small {
    display: block;
    color: #64748b;
}

.contact-section {
    padding: 5rem 0;
    background: #fff;
}

.contact-panel {
    height: 100%;
    padding: 1.5rem;
}

.contact-check-list {
    display: grid;
    gap: .85rem;
    margin-top: 1.25rem;
}

.contact-check-list p {
    display: flex;
    gap: .7rem;
    margin: 0;
}

.contact-check-list i {
    color: #0d6efd;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-expectations {
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.contact-links {
    margin-top: 4rem;
}

.contact-link-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: .55rem;
    padding: 1.15rem;
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-link-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, .22);
    box-shadow: 0 1rem 2.6rem rgba(15, 23, 42, .1);
}

.contact-link-card i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 1.2rem;
}

.contact-link-card strong {
    color: #111827;
}

.contact-link-card small {
    color: #64748b;
    line-height: 1.45;
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(15, 23, 42, .08);
    padding-top: 1.5rem;
}

.contact-social span {
    color: #64748b;
    font-weight: 800;
}

.contact-social div {
    display: flex;
    gap: .7rem;
}

.contact-social a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 50%;
    color: #0f172a;
    text-decoration: none;
}

.contact-social a:hover {
    color: #0d6efd;
    border-color: rgba(13, 110, 253, .28);
}

@media (max-width: 575.98px) {
    .contact-hero {
        padding: 3.2rem 0 3.8rem;
    }

    .contact-section {
        padding: 3.5rem 0;
    }
}
