/* Hero */
.int-hero {
    position: relative;
    width: 100%;
    height: clamp(220px, 50vh, 420px);
    min-height: 220px;
    max-height: 420px;
    overflow: hidden;
}

.int-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (min-width: 1301px) {
    .int-hero {
        height: clamp(420px, calc(420px + (100vw - 1300px) * 1.025), 625px);
        min-height: 420px;
        max-height: 625px;
    }
}

@media (min-width: 1501px) {
    .int-hero {
        height: 625px;
        max-height: 625px;
    }
}

@media (max-width: 767px) {
    .int-hero {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        line-height: 0 !important;
    }

    .int-hero img {
        width: 100% !important;
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        object-fit: contain !important;
    }
}

@media (max-width: 480px) {
    .int-hero {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        line-height: 0 !important;
        overflow: hidden !important;
    }

    .int-hero img {
        width: 100% !important;
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        object-fit: contain !important;
        display: block !important;
    }
}

.int-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 76, 120, 0.88) 0%, rgba(74, 144, 226, 0.75) 100%);
    display: flex;
    align-items: center;
}

.int-hero-content {
    color: #fff;
    max-width: 750px;
}

.int-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.int-hero-content h1 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.int-hero-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Section */
.int-page-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-service-single .service-single-content h2 {
    color: #024c78;
}

.int-page-sidebar {
    position: sticky;
    top: 15px;
}

.product-single-image {
    margin-bottom: 30px;
}

.product-single-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.int-page-sidebar .int-sidebar-nav {
    margin-top: 0;
    margin-bottom: 0;
}

.int-page-sidebar .int-sidebar-export {
    margin-top: 25px;
}

/* Body content - product page style */
.int-page-body {
    color: #2a2c2b;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 10px;
}

.int-page-body p {
    margin-bottom: 1.2em;
}

.int-page-body .int-lead {
    font-size: 1.05rem;
    color: #2a2c2b;
    line-height: 1.8;
    padding: 0;
    background: transparent;
    border: none;
    margin-bottom: 1.2em;
}

.int-page-body h2 {
    color: #2c3e50;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2.5em 0 1em;
    padding: 0;
    border: none;
    line-height: 1.3;
}

.int-page-body h2:first-child {
    margin-top: 0;
}

.int-page-body h3 {
    color: #024c78;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 2em 0 0.8em;
    padding-top: 1.5em;
    border-top: 1px solid #e9ecef;
    line-height: 1.3;
}

.int-page-body h2 + h3 {
    margin-top: 1em;
    padding-top: 0;
    border-top: none;
}

.int-page-body h4 {
    color: #2c3e50;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 1.2em 0 0.6em;
}

.int-page-body ul,
.int-page-body ol {
    margin-bottom: 1.2em;
    padding-left: 1.5em;
}

.int-page-body ul li,
.int-page-body ol li {
    margin-bottom: 0.4em;
}

.int-page-body .int-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 25px;
    margin-bottom: 1.2em;
}

.int-page-body a {
    color: #024c78;
    text-decoration: underline;
}

.int-page-body a:hover {
    color: #4a90e2;
}

.int-page-body .int-product-block {
    background: #f8f9fa;
    border: none;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.int-page-body .int-product-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.int-page-body .int-product-block h3 {
    margin-top: 0;
    color: #024c78;
}

/* FAQ Accordion */
.int-faq-accordion {
    margin-bottom: 1.5em;
}

.int-faq-accordion .int-faq-item {
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.int-faq-accordion .int-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #024c78;
    line-height: 1.4;
    transition: 0.3s;
}

.int-faq-accordion .int-faq-question:hover {
    background: #f0f7fc;
}

.int-faq-accordion .int-faq-question i {
    font-size: 0.85rem;
    color: #4a90e2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.int-faq-accordion .int-faq-item.active .int-faq-question i {
    transform: rotate(180deg);
}

.int-faq-accordion .int-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.int-faq-accordion .int-faq-item.active .int-faq-answer {
    max-height: 500px;
}

.int-faq-accordion .int-faq-answer-inner {
    padding: 0 20px 16px;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
}

.int-faq-accordion .int-faq-answer-inner p {
    margin: 0;
}

.int-page-body .int-cta-box {
    background: #f8f9fa;
    border: none;
    border-radius: 15px;
    padding: 30px;
    margin-top: 2em;
}

.int-page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.int-table-wrap {
    overflow-x: auto;
    margin: 1.5em 0;
}

.int-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.int-comparison-table th {
    background: linear-gradient(135deg, #024c78, #4a90e2);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.int-comparison-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #e9ecef;
    color: #2a2c2b;
    font-size: 0.95rem;
}

.int-comparison-table tr:last-child td {
    border-bottom: none;
}

.int-comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

/* Placeholder */
.int-placeholder {
    text-align: center;
    padding: 45px 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: none;
    margin-top: 20px;
}

.int-placeholder-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #024c78, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
}

.int-placeholder h3 {
    color: #024c78;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.int-placeholder p {
    color: #6c757d;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 25px;
}

.int-placeholder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Prev/Next nav */
.int-page-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.int-nav-link {
    flex: 1;
    max-width: 48%;
    padding: 16px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #e9ecef;
}

.int-nav-link:hover {
    background: #f0f7fc;
    border-color: #024c78;
    transform: translateY(-2px);
}

.int-nav-next {
    text-align: right;
    margin-left: auto;
}

.int-nav-label {
    display: block;
    color: #024c78;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.int-nav-title {
    display: block;
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Sidebar widgets */
.int-sidebar-widget,
.int-page-sidebar .int-sidebar-widget {
    background: #fff;
    border-radius: 15px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.int-sidebar-widget h3 {
    color: #024c78;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.int-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 360px;
    overflow-y: auto;
}

.int-sidebar-links li {
    margin-bottom: 4px;
}

.int-sidebar-links li a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    transition: 0.3s;
    line-height: 1.3;
}

.int-sidebar-links li a i {
    color: #024c78;
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
}

.int-sidebar-links li a:hover,
.int-sidebar-links li.active a {
    background: #f0f7fc;
    color: #024c78;
}

.int-live-badge {
    margin-left: auto;
    background: #d4edda;
    color: #155724;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.int-sidebar-cta {
    background: linear-gradient(135deg, #024c78, #4a90e2);
    color: #fff;
    text-align: center;
}

.int-sidebar-cta h3 {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.int-sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.int-cta-btn {
    background: #fff !important;
    color: #024c78 !important;
    display: inline-block;
    margin-bottom: 12px;
    width: 100%;
}

.int-cta-phone,
.int-cta-whatsapp {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 0;
    opacity: 0.95;
}

.int-cta-phone:hover,
.int-cta-whatsapp:hover {
    opacity: 1;
    color: #fff;
}

/* Buttons - keep theme arrow, fix text overlap with right padding */
.int-btn-primary,
.int-btn-outline,
.int-cta-btn,
.int-page-section .btn-default,
.int-page-body .btn-default,
.int-placeholder .btn-default,
.int-landing-cta .btn-default,
.int-sidebar-cta .btn-default {
    padding: 14px 58px 14px 24px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4em !important;
}

.int-btn-primary.btn-default::before,
.int-cta-btn.btn-default::before,
.int-page-section .btn-default.int-btn-primary::before,
.int-page-body .btn-default::before,
.int-placeholder .btn-default::before,
.int-landing-cta .btn-default.int-btn-primary::before,
.int-sidebar-cta .btn-default::before {
    right: 4px !important;
    transform: translate(0, -50%) !important;
    filter: brightness(0) invert(1) !important;
}

.int-btn-primary.btn-default:hover::before,
.int-page-section .btn-default.int-btn-primary:hover::before,
.int-page-body .btn-default:hover::before,
.int-placeholder .btn-default:hover::before {
    transform: translate(3px, -50%) !important;
}

.int-btn-outline.btn-default::before {
    transform: translate(-20px, -50%) !important;
    filter: none !important;
    background-image: url(../images/arrow-accent.svg) !important;
}

.int-landing-cta .btn-default.int-btn-outline::before {
    filter: brightness(0) invert(1) !important;
    background-image: url(../images/arrow-accent-secondary.svg) !important;
}

.int-btn-primary {
    background: linear-gradient(135deg, #024c78, #4a90e2) !important;
    border: none !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-decoration: none !important;
    display: inline-block;
}

.int-btn-primary:hover {
    background: linear-gradient(135deg, #024c78, #4a90e2) !important;
    color: #fff !important;
}

.int-btn-outline {
    background: transparent !important;
    border: 2px solid #024c78 !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    color: #024c78 !important;
    text-decoration: none !important;
    display: inline-block;
}

/* Landing page */
.int-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.int-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.int-stat-num {
    display: block;
    color: #024c78;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.int-stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.int-landing-intro {
    margin-bottom: 35px !important;
}

.int-landing-intro h3 {
    color: #024c78;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.int-landing-intro h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
}

.int-landing-intro p {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.int-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.int-grid-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    text-decoration: none;
    display: block;
    border: 1px solid transparent;
    overflow: hidden;
}

.int-grid-card:has(.int-grid-card-image) {
    padding: 0;
}

.int-grid-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f0f7fc;
}

.int-grid-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.int-grid-card:hover .int-grid-card-image img {
    transform: scale(1.05);
}

.int-grid-card .int-grid-card-top,
.int-grid-card h4,
.int-grid-card p,
.int-grid-card .int-grid-arrow {
    padding-left: 22px;
    padding-right: 22px;
}

.int-grid-card .int-grid-card-top {
    padding-top: 18px;
}

.int-grid-card .int-grid-arrow {
    padding-bottom: 22px;
}

.int-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(2, 76, 120, 0.15);
    border-color: #4a90e2;
}

.int-grid-card-live {
    border-color: #d4edda;
}

.int-grid-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.int-grid-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #024c78, #4a90e2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.int-card-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    background: #d4edda;
    color: #155724;
}

.int-card-badge-soon {
    background: #fff3cd;
    color: #856404;
}

.int-grid-card h4 {
    color: #024c78;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.int-grid-card p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0 0 12px;
    line-height: 1.5;
}

.int-grid-arrow {
    color: #024c78;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.int-grid-arrow i {
    transition: 0.3s;
}

.int-grid-card:hover .int-grid-arrow i {
    margin-left: 8px;
}

.int-landing-cta {
    margin-top: 50px;
}

.int-landing-cta .int-cta-box {
    text-align: center;
    background: linear-gradient(135deg, #024c78, #4a90e2);
    color: #fff;
    border: none;
    padding: 40px 30px;
}

.int-landing-cta .int-cta-box h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.int-landing-cta .int-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 22px;
}

.int-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.int-landing-cta .int-btn-primary {
    background: #fff !important;
    color: #024c78 !important;
}

.int-landing-cta .btn-default.int-btn-primary::before {
    filter: none !important;
    background-image: url(../images/arrow-accent.svg) !important;
}

.int-landing-cta .int-btn-outline {
    border-color: #fff !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
    .int-grid { grid-template-columns: repeat(2, 1fr); }
    .int-stats-row { grid-template-columns: repeat(3, 1fr); }
    .int-hero-content h1 { font-size: 1.8rem; }
    .int-page-sidebar { position: static; margin-bottom: 30px; }
}

@media (max-width: 767px) {
    .int-hero { height: 35vh; min-height: 180px; max-height: 280px; }
    .int-page-section { padding: 40px 0; }
    .int-grid { grid-template-columns: 1fr; }
    .int-stats-row { grid-template-columns: 1fr; }
    .int-hero-content h1 { font-size: 1.5rem; }
    .int-page-body .int-two-col { grid-template-columns: 1fr; }
    .int-page-nav { flex-direction: column; }
    .int-nav-link { max-width: 100%; }
    .int-nav-next { text-align: left; }
}

@media (max-width: 480px) {
    .int-hero {
        min-height: 150px;
        max-height: 220px;
    }
}
