/* ===== INCHCAPE LANDING STYLESHEET ===== */

/* Base Colors and Typography */
.inchi-body {
    font-family: 'Montserrat', sans-serif;
    color: #1a2530;
    background-color: #f4f6fa;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Container */
.inchi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles Refined */
.inchi-header {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

/* White Top Bar */
.inchi-top-bar {
    background-color: #ffffff;
    color: #475569;
    font-size: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.inchi-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.inchi-top-left {
    color: #475569;
}

.inchi-top-phone {
    font-weight: 500;
}

.inchi-top-phone strong a {
    color: #0f2a4a;
    font-weight: 700;
    text-decoration: none;
}

.inchi-top-phone a {
    color: #475569;
    text-decoration: none;
    margin-left: 5px;
}

.inchi-top-phone a:hover {
    color: #00bcd4;
}

.inchi-top-phone i {
    color: #00bcd4;
    margin-right: 6px;
}

/* Countries & Social icons */
.inchi-countries {
    margin-right: 15px;
    color: #94a3b8;
}

.inchi-countries a {
    color: #475569;
    text-decoration: none;
    margin: 0 6px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.inchi-countries a:hover, .inchi-countries a.active {
    color: #061d36;
    font-weight: 700;
}

.inchi-social {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

/* Redes sociales en recuadros azul oscuro/índigo */
.inchi-social a {
    background-color: #061d36;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.inchi-social a:hover {
    background-color: #00bcd4;
}

/* Main Navigation Bar - Dark Blue (#061d36) */
.inchi-main-nav {
    background-color: #061d36;
    padding: 12px 0;
}

.inchi-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logotipo de Inchcape en blanco con línea divisoria vertical */
.inchi-logo-area {
    display: flex;
    align-items: center;
}

.inchi-logo-area a {
    text-decoration: none;
}

.inchi-corporate-logo {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    padding-right: 20px;
    margin-right: 10px;
}

.inchi-logo-circle {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #00d4ff 0%, #099fdb 100%);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

.inchi-logo-circle::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    opacity: 0.8;
}

.inchi-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

/* Navigation Links */
.inchi-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.inchi-navigation li {
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
}

/* Vertical separator for menu items */
.inchi-navigation li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-left: 15px;
}

.inchi-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.2s ease;
}

.inchi-navigation a:hover {
    color: #00bcd4;
}

.inchi-navigation a i {
    font-size: 11px;
    margin-left: 3px;
}

/* Desktop Dropdown Submenus */
.inchi-navigation ul {
    position: relative;
}

.inchi-navigation li {
    position: relative;
}

.inchi-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #061d36; /* Navy blue */
    min-width: 200px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    display: none; /* Hide by default */
    flex-direction: column;
    gap: 0;
    z-index: 999;
}

.inchi-navigation .sub-menu li {
    width: 100%;
    margin: 0;
}

.inchi-navigation .sub-menu li::after {
    display: none !important; /* No vertical separators in submenu */
}

.inchi-navigation .sub-menu a {
    display: block;
    width: 100%;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.inchi-navigation .sub-menu a:hover {
    background-color: #00bcd4; /* Cyan */
    color: #061d36;
}

.inchi-navigation li:hover > .sub-menu {
    display: flex;
}

/* Actions Section */
.inchi-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botón de "COTIZA AQUÍ" en fondo celeste/cian brillante */
.inchi-btn-cotiza {
    background-color: #00bcd4;
    color: #061d36;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.2);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.inchi-btn-cotiza:hover {
    background-color: #00acc1;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.3);
}

/* Caja de búsqueda con fondo blanco y botón de lupa en fondo cian */
.inchi-search-box {
    display: flex;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    max-width: 200px;
    border: 1px solid #cbd5e1;
    align-items: center;
}

.inchi-search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #0f2a4a;
    padding: 6px 10px;
    font-size: 12px;
    width: 140px;
}

.inchi-search-box input::placeholder {
    color: #94a3b8;
}

.inchi-search-box button {
    background-color: #00bcd4;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 12px;
    transition: background-color 0.2s ease;
}

.inchi-search-box button:hover {
    background-color: #00acc1;
}

.inchi-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.inchi-hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-align: left;
    overflow: hidden;
}

.inchi-hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/agendamiento/2) banner.jpg') center/cover no-repeat;
    z-index: 1;
    transition: transform 10s ease;
}

.inchi-hero:hover .inchi-hero-media {
    transform: scale(1.03);
}

.inchi-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 42, 74, 0.85) 0%, rgba(15, 42, 74, 0.4) 60%, rgba(15, 42, 74, 0.1) 100%);
    z-index: 2;
}

.inchi-hero-content {
    position: relative;
    z-index: 3;
    max-width: 780px;
    margin-left: 10%;
    padding: 20px;
}

.inchi-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.inchi-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 30px;
    color: #f0f4f8;
}

.inchi-hero-btn {
    display: inline-block;
    background-color: #00bcd4;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.inchi-hero-btn:hover {
    background-color: #00acc1;
    transform: translateY(-2px);
}

.inchi-hero-btn i {
    margin-left: 8px;
}

/* Intro bar */
.inchi-intro-bar {
    background-color: #e8edf5;
    padding: 25px 0;
    text-align: center;
    border-bottom: 1px solid #d0dbe9;
}

.inchi-intro-bar p {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #0f2a4a;
    line-height: 1.4;
}

/* Main Cotizador Section wrapper */
.inchi-section-cotizador {
    padding: 50px 0;
}

/* Info Section (Pills / Brand models details) */
.inchi-section-info {
    padding: 40px 0 60px;
    background-color: #ffffff;
}

.inchi-info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.inchi-card-header-icon {
    font-size: 28px;
    color: #00bcd4;
    background: rgba(0, 188, 212, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.inchi-card-body {
    flex-grow: 1;
}

.inchi-card-body h3 {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 700;
    color: #0f2a4a;
    line-height: 1.3;
}

.inchi-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
}

.inchi-check-list li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #334155;
    line-height: 1.4;
}

.inchi-check-list li i {
    color: #099fdb;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 16px;
}

/* Pillars grid */
.inchi-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.inchi-pillar-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inchi-pillar-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    border-color: #00bcd4;
}

.inchi-pillar-icon {
    font-size: 24px;
    color: #00bcd4;
    margin-bottom: 8px;
}

.inchi-pillar-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0f2a4a;
}

/* Brands columns layout */
.inchi-brands-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.inchi-brand-col {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.inchi-brand-col-header {
    background-color: #ffffff;
    color: #1a2530;
    padding: 20px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-sizing: border-box;
}

.inchi-brand-col-header img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.inchi-col-suzuki .inchi-brand-col-header { background-color: #ffffff; }
.inchi-col-citroen .inchi-brand-col-header { background-color: #ffffff; }
.inchi-col-ds .inchi-brand-col-header { background-color: #ffffff; }
.inchi-col-gwm .inchi-brand-col-header { background-color: #ffffff; }

.inchi-brand-col-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.inchi-brand-desc {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin: 0 0 15px;
}

.inchi-brand-models {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.inchi-brand-models li {
    font-size: 12px;
    color: #334155;
    margin-bottom: 8px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
}

.inchi-brand-models li i {
    color: #00bcd4;
    margin-right: 8px;
    margin-top: 2px;
}

.inchi-brand-desc-small {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.inchi-badges-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.inchi-badge {
    background-color: #f1f5f9;
    color: #475569;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
}

/* Map Section */
.inchi-section-map {
    padding: 60px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.inchi-map-header {
    text-align: center;
    margin-bottom: 30px;
}

.inchi-map-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f2a4a;
    margin: 0 0 10px;
}

.inchi-map-header p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.inchi-map-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.inchi-filter-city {
    display: flex;
    align-items: center;
}

.inchi-filter-city label {
    font-weight: 700;
    color: #0f2a4a;
    margin-right: 12px;
    font-size: 14px;
}

.inchi-filter-city select {
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    min-width: 200px;
    background-color: #f8fafc;
}

.inchi-filter-categories {
    display: flex;
    gap: 8px;
}

.inchi-map-btn {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.inchi-map-btn.active {
    background-color: #0d1e3d;
    color: #ffffff;
    border-color: #0d1e3d;
}

.inchi-map-btn:hover {
    background-color: #f1f5f9;
}

.inchi-map-btn.active:hover {
    background-color: #162f5c;
}

/* Map frame style */
.inchi-google-map {
    height: 480px;
    width: 100%;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Footer Section */
.inchi-footer {
    background-color: #0d1e3d;
    color: #94a3b8;
    padding: 60px 0 30px;
    border-top: 4px solid #00bcd4;
    font-size: 13px;
}

.inchi-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.inchi-footer-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.inchi-footer-col {
    flex: 1;
    min-width: 220px;
}

.inchi-footer-brand {
    flex: 1.5;
}

.inchi-footer-brand p {
    margin-top: 15px;
    line-height: 1.5;
}

.inchi-footer-col h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 20px;
}

.inchi-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inchi-footer-col li {
    margin-bottom: 10px;
}

.inchi-footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.inchi-footer-col a:hover {
    color: #ffffff;
}

.inchi-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.inchi-footer-legal {
    max-width: 780px;
}

.inchi-footer-legal p {
    margin: 0 0 10px;
    line-height: 1.5;
}

.inchi-footer-legal a {
    color: #00bcd4;
    text-decoration: none;
}

.inchi-footer-legal a:hover {
    text-decoration: underline;
}

.inchi-footer-copyright {
    text-align: right;
    white-space: nowrap;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
    .inchi-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0f2a4a;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .inchi-navigation.active {
        display: block;
    }
    
    .inchi-navigation ul {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .inchi-navigation li {
        margin: 10px 0;
    }
    
    .inchi-menu-toggle {
        display: block;
    }
    
    .inchi-hero-title {
        font-size: 38px;
    }
    
    .inchi-check-list {
        grid-template-columns: 1fr;
    }
    
    .inchi-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inchi-brands-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .inchi-top-right {
        display: none;
    }
    
    .inchi-actions {
        display: none;
    }
    
    .inchi-hero {
        height: 420px;
    }
    
    .inchi-hero-content {
        margin-left: 5%;
    }
    
    .inchi-hero-title {
        font-size: 30px;
    }
    
    .inchi-intro-bar p {
        font-size: 16px;
    }
    
    .inchi-map-filters {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .inchi-filter-categories {
        flex-wrap: wrap;
    }
    
    .inchi-map-btn {
        flex: 1 1 calc(50% - 8px);
    }
    
    .inchi-google-map {
        height: 350px;
    }
    
    .inchi-footer-bottom {
        flex-direction: column;
        text-align: left;
    }
    
    .inchi-footer-copyright {
        text-align: left;
    }
}

@media only screen and (max-width: 479px) {
    .inchi-brands-columns {
        grid-template-columns: 1fr;
    }
    
    .inchi-pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Map and Form Section (2 Columns Grid) --- */
.inchi-section-map-form {
    padding: 60px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.inchi-grid-two-columns {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

@media only screen and (max-width: 991px) {
    .inchi-grid-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.inchi-map-col {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.inchi-map-header h2 {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    margin: 0;
    letter-spacing: 1px;
}

.inchi-map-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: #061d36;
    margin: 5px 0 20px;
}

.inchi-map-filters-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.inchi-filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.inchi-filter-group label {
    font-weight: 700;
    font-size: 11px;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.inchi-filter-group select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    background-color: #f8fafc;
    width: 100%;
}

.inchi-filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Form Column Styles */
.inchi-form-col {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.inchi-form-header {
    background-color: #061d36;
    color: #ffffff;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.inchi-form-header-icon {
    font-size: 32px;
    color: #00bcd4;
}

.inchi-form-header-text h2 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    opacity: 0.9;
}

.inchi-form-header-text h1 {
    font-size: 24px;
    font-weight: 800;
    margin: 5px 0 0;
}

.inchi-cf7-container {
    padding: 30px;
}

/* CF7 Custom Form Styling for Inchcape */
.inchi-cf7-container form.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inchi-cf7-container label {
    font-weight: 700;
    font-size: 13px;
    color: #475569;
    margin-bottom: 5px;
    display: block;
}

.inchi-cf7-container input[type="text"],
.inchi-cf7-container input[type="email"],
.inchi-cf7-container input[type="tel"],
.inchi-cf7-container input[type="number"],
.inchi-cf7-container select,
.inchi-cf7-container textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    background-color: #f8fafc !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
    min-height: 48px !important;
}

.inchi-cf7-container input:focus,
.inchi-cf7-container select:focus,
.inchi-cf7-container textarea:focus {
    border-color: #00bcd4 !important;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15) !important;
    background-color: #ffffff !important;
}

.inchi-cf7-container textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

.inchi-cf7-container input[type="submit"] {
    background: linear-gradient(135deg, #00bcd4 0%, #099fdb 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 28px !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3) !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.inchi-cf7-container input[type="submit"]:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.4) !important;
}

/* ===== INCHAPE NEW HEADER AND LAYOUT ADJUSTMENTS ===== */

/* Stack rows vertically in the header container */
.inchi-nav-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.inchi-nav-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.inchi-nav-row-2 {
    width: 100%;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

.inchi-header-actions-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* Button general styles in header */
.inchi-header-btn {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-align: center;
    box-sizing: border-box;
}

/* Red buttons */
.inchi-header-btn-red {
    background-color: #e30613; /* Inchcape Red */
    color: #ffffff !important;
}

.inchi-header-btn-red:hover {
    background-color: #b3050f;
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
}

/* Cotiza button (gray/navy in reference but with cian focus) */
.inchi-header-btn-gray {
    background-color: #00bcd4; /* Cyan/celeste */
    color: #061d36 !important;
}

.inchi-header-btn-gray:hover {
    background-color: #00acc1;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
}

/* Search bar styling */
.inchi-header-search {
    display: flex;
    align-items: center;
}

.inchi-header-search .search-form {
    display: flex;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    overflow: hidden;
}

.inchi-header-search .search-field {
    border: none;
    outline: none;
    padding: 6px 10px;
    font-size: 12px;
    color: #334155;
    width: 140px;
    background: #ffffff;
    height: auto;
    min-height: auto;
}

.inchi-header-search .search-submit {
    background-color: #00bcd4;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.inchi-header-search .search-submit:hover {
    background-color: #00acc1;
}

/* Desktop and Mobile Helper classes */
@media only screen and (max-width: 991px) {
    .inchi-desktop-only {
        display: none !important;
    }
}

.inchi-mobile-only {
    display: none !important;
}

@media only screen and (max-width: 991px) {
    .inchi-mobile-only {
        display: block !important;
    }
}

/* Mobile Toggle Icon */
.inchi-menu-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    display: none;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 991px) {
    .inchi-menu-toggle {
        display: inline-flex;
    }
}

/* Mobile Drawer Panel */
.inchi-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px; /* Hidden offscreen on the right */
    width: 300px;
    height: 100vh;
    background-color: #061d36; /* Navy blue */
    z-index: 10001; /* Above sticky header and overlay */
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.inchi-mobile-drawer.active {
    right: 0;
}

.inchi-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inchi-drawer-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inchi-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Mobile Menu Accordion */
.inchi-mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inchi-mobile-navigation li {
    display: block;
    width: 100%;
}

.inchi-mobile-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s ease;
}

.inchi-mobile-navigation a:hover,
.inchi-mobile-navigation li.submenu-active > a {
    color: #00bcd4;
}

/* Submenu layout */
.inchi-mobile-navigation .sub-menu {
    list-style: none;
    padding-left: 15px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 2px solid #00bcd4;
    margin-top: 5px;
}

.inchi-mobile-navigation .sub-menu a {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    padding: 5px 0;
    border-bottom: none;
}

.inchi-mobile-navigation .sub-menu a:hover {
    color: #ffffff;
}

/* Mobile Search in Drawer */
.inchi-drawer-search .search-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.inchi-drawer-search .search-field {
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 14px;
    flex-grow: 1;
    min-height: auto;
    height: auto;
}

.inchi-drawer-search .search-submit {
    background-color: #00bcd4;
    border: none;
    color: #ffffff;
    padding: 0 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile actions buttons in Drawer */
.inchi-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inchi-drawer-btn {
    display: block;
    width: 100%;
    background-color: #e30613; /* Inchcape Red */
    color: #ffffff !important;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
}

.inchi-drawer-btn:hover {
    background-color: #b3050f;
}

.inchi-drawer-btn.highlight {
    background-color: #00bcd4; /* Cyan */
    color: #061d36 !important;
}

.inchi-drawer-btn.highlight:hover {
    background-color: #00acc1;
    color: #ffffff !important;
}

/* Overlay dark background when menu is open */
.inchi-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000; /* Behind drawer, above body */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.inchi-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Disable body scroll when drawer is open */
body.inchi-menu-open {
    overflow: hidden !important;
}


/* ===== BOTÓN STICKY LATERAL DERECHO ===== */
.inchi-sticky-button-wrap {
    position: fixed;
    right: 15px; /* Fully visible on the right */
    z-index: 999; /* Below drawer/header but above normal content */
    transform: translateY(-50%);
    transition: transform 0.2s ease, right 0.2s ease;
}

.inchi-sticky-button-wrap:hover {
    transform: translateY(-50%) scale(1.04); /* Slight zoom micro-animation on hover */
}

.inchi-sticky-button-wrap img {
    display: block;
    width: 200px; /* Match the 200px size from reference button */
    height: auto;
    border-radius: 12px; /* Smooth corners matching reference page */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Visibility classes */
.inchi-sticky-vis-desktop {
    display: block;
}

.inchi-sticky-vis-mobile {
    display: none;
}

.inchi-sticky-vis-both {
    display: block;
}

@media only screen and (max-width: 767px) {
    .inchi-sticky-vis-desktop {
        display: none;
    }
    
    .inchi-sticky-vis-mobile {
        display: block;
    }
    
    .inchi-sticky-button-wrap {
        right: 10px;
    }
    
    .inchi-sticky-button-wrap img {
        width: 150px;
        border-radius: 10px;
    }
}


/* ===== CONTACT FORM 7 LAYOUT REDESIGN ===== */

/* Form container transparent sections reset */
.inchi-cf7-container .cf7-card {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

.inchi-cf7-container h3 {
    display: none !important; /* Hide sections headers */
}

/* Reduce spaces between labels and inputs */
.inchi-cf7-container br {
    display: none !important; /* Hide automatic linebreaks causing spacing */
}

.inchi-cf7-container p {
    margin: 0 !important;
    padding: 0 !important;
}

.inchi-cf7-container label {
    font-weight: 700;
    font-size: 13px;
    color: #475569;
    margin-bottom: 0 !important; /* Reset margin */
    padding-bottom: 0 !important; /* Reset padding */
    display: block;
}

.inchi-cf7-container .cf7-grid {
    margin-bottom: 8px !important; /* Spacing between form fields rows */
}

.inchi-cf7-container .cf7-grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.inchi-cf7-container .cf7-grid--1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.inchi-cf7-container .cf7-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important; /* Fixed tight spacing of 2px between label and input/select */
}

.inchi-cf7-container .wpcf7-form-control-wrap {
    display: block !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Consent and Checkbox Styling */
.inchi-cf7-container .cf7-consent h4 {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    margin-top: 15px;
    margin-bottom: 8px;
}

.inchi-cf7-container .cf7-consent .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    margin-left: 0;
}

.inchi-cf7-container .cf7-consent input[type="checkbox"] {
    margin-right: 6px;
    width: 18px;
    height: 18px;
    accent-color: #00bcd4;
    cursor: pointer;
}

.inchi-cf7-container .cf7-consent label {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    color: #475569;
}

.inchi-cf7-container textarea#tyc {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 11px;
    padding: 10px;
    line-height: 1.4;
    width: 100%;
    resize: none;
    box-sizing: border-box;
    font-family: inherit;
}

.inchi-cf7-container .cf7-submit {
    margin-top: 20px;
}

/* Error/Success notices in Contact Form 7 */
.inchi-cf7-container .wpcf7-not-valid-tip {
    color: #dc2626 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    margin-top: 4px !important;
}

.inchi-cf7-container .wpcf7-response-output {
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 15px 0 0 !important;
}

.inchi-cf7-container .wpcf7-mail-sent-ok {
    background-color: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    color: #15803d !important;
}

.inchi-cf7-container .wpcf7-validation-errors,
.inchi-cf7-container .wpcf7-mail-sent-ng {
    background-color: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    color: #b91c1c !important;
}

/* Mobile styles override for form grid */
@media only screen and (max-width: 767px) {
    .inchi-cf7-container .cf7-grid--2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ===== INCHCAPE FOOTER RE-STYLING ===== */
.inchi-footer-wrapper {
    background-color: #f1f5f9 !important; /* Light gray background */
    color: #334155 !important;
    font-family: 'Montserrat', sans-serif !important;
    width: 100%;
}

.inchi-footer-wrapper footer.footer {
    background-color: #f1f5f9 !important;
    border-top: 4px solid #00bcd4 !important;
    padding: 60px 10% 30px !important;
    box-sizing: border-box;
}

.inchi-footer-wrapper footer.footer .footer_columnas {
    height: auto !important; /* Cancel legacy height limit */
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

.inchi-footer-wrapper footer.footer h6 {
    color: #061d36 !important; /* Dark blue title */
    font-weight: 700 !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
    margin-top: 25px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
}

.inchi-footer-wrapper footer.footer p {
    margin: 8px 0 !important;
    line-height: 1.5 !important;
}

.inchi-footer-wrapper footer.footer a {
    color: #334155 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    transition: color 0.2s ease !important;
}

.inchi-footer-wrapper footer.footer a:hover {
    color: #00bcd4 !important; /* Cyan hover */
}

/* Brands Strip at Footer bottom */
.inchi-footer-wrapper .seccionMarcasFooter {
    background-color: #ffffff !important;
    border-top: 1px solid #cbd5e1 !important;
    border-bottom: 1px solid #cbd5e1 !important;
    padding: 30px 20px !important;
    margin: 40px -15% 30px !important;
    text-align: center !important;
}

.inchi-footer-wrapper .seccionMarcasFooter h3.title-2 {
    color: #061d36 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    margin-bottom: 20px !important;
    letter-spacing: 1px;
}

.inchi-footer-wrapper .seccionMarcasFooter img {
    max-width: 100% !important;
    height: auto !important;
}

/* Legales Section */
.inchi-footer-wrapper .seccionLegalesFooter {
    border-top: 1px solid #cbd5e1 !important;
    padding-top: 35px !important;
    margin-top: 30px !important;
    color: #64748b !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
}

.inchi-footer-wrapper .seccionLegalesFooter p {
    margin-bottom: 10px !important;
}

.inchi-footer-wrapper .seccionLegalesFooter a {
    color: #00bcd4 !important; /* Cyan links for terms/data policy */
    font-weight: 600 !important;
    text-decoration: none !important;
}

.inchi-footer-wrapper .seccionLegalesFooter a:hover {
    text-decoration: underline !important;
}

/* Bottom Copyright Bar */
.inchi-footer-bottom-strip {
    background-color: #061d36 !important; /* Dark blue */
    padding: 20px 0 !important;
    color: rgba(255,255,255,0.7) !important;
    width: 100%;
}

.inchi-footer-bottom-strip .inchi-corporate-logo .inchi-logo-circle {
    background: radial-gradient(circle, #ffffff 0%, #cbd5e1 100%) !important;
}

.inchi-footer-bottom-strip .inchi-corporate-logo .inchi-logo-circle::before {
    border-color: #061d36 !important;
}

@media (max-width: 600px) {
    .inchi-footer-bottom-strip .r-flex-direction_1 {
        flex-direction: column-reverse !important;
        gap: 15px;
    }
    
    .inchi-footer-bottom-strip .col_1 {
        text-align: center !important;
    }
}

/* ===== CONTACT FORM 7 DERCO LAYOUT ===== */

.inchi-cf7-container p:empty {
    display: none !important;
}

.inchi-cf7-container br {
    display: none !important;
}

/* Form Wrapper */
.cf7-derco-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.cf7-derco-form__head {
    display: none !important; /* Title already rendered in inchi-form-header */
}

/* Grid Rows */
.inchi-cf7-container .cf7-derco-row {
    display: grid !important;
    gap: 16px !important;
    width: 100% !important;
    margin-bottom: 4px !important;
}

.inchi-cf7-container .cf7-derco-row--2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.inchi-cf7-container .cf7-derco-row--1 {
    grid-template-columns: 1fr !important;
}

/* Field Container */
.inchi-cf7-container .cf7-derco-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
}

.inchi-cf7-container .cf7-derco-field label {
    font-weight: 700 !important;
    font-size: 13px !important;
    color: #475569 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: block !important;
}

/* Input Control & Icon Positioning */
.inchi-cf7-container .cf7-derco-control {
    position: relative !important;
    width: 100% !important;
    display: block !important;
}

.inchi-cf7-container .cf7-derco-control.has-icon i {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 16px !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

/* Inputs & Selects Left Padding to clear Icon */
.inchi-cf7-container .cf7-derco-control.has-icon input[type="text"],
.inchi-cf7-container .cf7-derco-control.has-icon input[type="email"],
.inchi-cf7-container .cf7-derco-control.has-icon input[type="tel"],
.inchi-cf7-container .cf7-derco-control.has-icon input[type="number"],
.inchi-cf7-container .cf7-derco-control.has-icon select {
    padding-left: 45px !important;
}

/* Terms Textarea adjustments */
.inchi-cf7-container textarea#tyc {
    width: 100% !important;
    min-height: 120px !important;
    resize: vertical !important;
}

/* Consent check-boxes */
.inchi-cf7-container .cf7-derco-consent {
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
}

.inchi-cf7-container .cf7-derco-consent h3 {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
    display: block !important;
}

.inchi-cf7-container .cf7-derco-consent .wpcf7-list-item {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 20px !important;
    margin-left: 0 !important;
}

.inchi-cf7-container .cf7-derco-consent input[type="checkbox"] {
    margin-right: 8px !important;
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
}

.inchi-cf7-container .cf7-derco-consent label {
    display: inline-flex !important;
    align-items: center !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    cursor: pointer !important;
    color: #475569 !important;
}

/* Submit Button alignments */
.inchi-cf7-container .cf7-derco-submit {
    margin-top: 20px !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.inchi-cf7-container .cf7-derco-submit input[type="submit"] {
    max-width: 340px !important;
    transition: all 0.2s ease !important;
}

/* Disabled button styling and blocked cursor */
.inchi-cf7-container input[type="submit"].is-disabled,
.inchi-cf7-container input[type="submit"]:disabled {
    cursor: not-allowed !important;
    opacity: 0.55 !important;
    filter: grayscale(30%) !important;
    box-shadow: none !important;
    transform: none !important;
}

.inchi-cf7-container .cf7-derco-submit:has(input:disabled) {
    cursor: not-allowed !important;
}

/* Mobile responsive collapses */
@media only screen and (max-width: 767px) {
    .inchi-cf7-container .cf7-derco-row--2 {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

/* ===== MAINTENANCE LANDING CONTENT — JULY 2026 ===== */
.inchi-hero {
    min-height: 500px;
    height: min(37.65vw, 540px);
}

.inchi-hero-media {
    background-position: center center;
}

.inchi-hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(4, 13, 23, 0.06) 0%,
        rgba(4, 13, 23, 0.15) 42%,
        rgba(4, 13, 23, 0.78) 70%,
        rgba(4, 13, 23, 0.9) 100%
    );
}

.inchi-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 30px 51%;
}

.inchi-hero-title {
    max-width: 560px;
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(34px, 3.25vw, 52px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.03;
    text-transform: uppercase;
}

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

.inchi-hero-title strong {
    color: #10bde8;
    font-weight: 800;
}

.inchi-hero-subtitle {
    max-width: 540px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(18px, 1.55vw, 24px);
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.inchi-maintenance-info {
    padding: 28px 0 64px;
    color: #334155;
    background: #f4f7fb;
}

.inchi-maintenance-info__shell {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e6edf4;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 42, 74, 0.05);
}

.inchi-content-block {
    display: flex;
    gap: 22px;
    padding: 26px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #fbfdff 0%, #f5f9fc 100%);
    border: 1px solid #e5edf4;
    border-radius: 14px;
}

.inchi-content-block:last-child {
    margin-bottom: 0;
}

.inchi-content-block__icon {
    display: grid;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    color: #08add8;
    font-size: 23px;
    background: #e5f8fc;
    border-radius: 10px;
    place-items: center;
}

.inchi-content-block__body {
    flex: 1 1 auto;
    min-width: 0;
}

.inchi-content-block h2 {
    margin: 0 0 14px;
    color: #0f4f87;
    font-size: 21px;
    font-weight: 750;
    line-height: 1.3;
}

.inchi-content-block p {
    margin: 0;
    color: #536579;
    font-size: 14px;
    line-height: 1.75;
}

.inchi-content-block__lead {
    margin-bottom: 18px !important;
}

.inchi-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 34px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.inchi-benefits-grid li {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #536579;
    font-size: 13px;
    line-height: 1.55;
}

.inchi-benefits-grid strong {
    color: #0f4f87;
    font-weight: 750;
}

.inchi-list-dot {
    width: 7px;
    height: 7px;
    margin-top: 6px;
    background: #0ab4df;
    border-radius: 50%;
}

.inchi-intervals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 6px 0 18px;
}

.inchi-interval-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 8px 22px;
    border-right: 1px solid #dfe7ef;
}

.inchi-interval-item:first-child {
    padding-left: 0;
}

.inchi-interval-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.inchi-interval-item__icon {
    color: #08add8;
    font-size: 35px;
    line-height: 1;
}

.inchi-interval-item h3 {
    margin: 0 0 7px;
    color: #099fc9;
    font-size: 17px;
    font-weight: 800;
}

.inchi-interval-item p {
    font-size: 12px;
    line-height: 1.55;
}

.inchi-intervals-note {
    padding-top: 15px;
    color: #64748b !important;
    font-size: 12px !important;
    border-top: 1px solid #e0e8f0;
}

.inchi-intervals-note .fa {
    margin-right: 7px;
    color: #0aaed8;
}

.inchi-authorized-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding: 8px 0 0;
    margin: 0;
    list-style: none;
}

.inchi-authorized-grid li {
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: center;
    min-height: 126px;
    padding: 8px 14px;
    color: #34536f;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
    text-align: center;
    border-right: 1px solid #dfe7ef;
}

.inchi-authorized-grid li:last-child {
    border-right: 0;
}

.inchi-authorized-grid .fa {
    color: #08add8;
    font-size: 32px;
}

@media only screen and (max-width: 991px) {
    .inchi-hero {
        min-height: 430px;
        height: 52vw;
    }

    .inchi-hero-content {
        padding-left: 46%;
    }

    .inchi-benefits-grid {
        grid-template-columns: 1fr;
    }

    .inchi-authorized-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 0;
    }

    .inchi-authorized-grid li:nth-child(3) {
        border-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .inchi-hero {
        min-height: 470px;
        height: 118vw;
        max-height: 600px;
        align-items: flex-end;
    }

    .inchi-hero-media {
        background-position: 30% center;
    }

    .inchi-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(4, 13, 23, 0.04) 0%,
            rgba(4, 13, 23, 0.22) 42%,
            rgba(4, 13, 23, 0.92) 100%
        );
    }

    .inchi-hero-content {
        align-items: flex-start;
        margin: 0;
        padding: 32px 24px 38px;
    }

    .inchi-hero-title {
        font-size: clamp(30px, 9vw, 42px);
    }

    .inchi-hero-subtitle {
        max-width: 500px;
        font-size: 17px;
    }

    .inchi-maintenance-info {
        padding: 20px 0 42px;
    }

    .inchi-maintenance-info__shell {
        padding: 14px;
        border-radius: 12px;
    }

    .inchi-content-block {
        gap: 14px;
        padding: 20px 16px;
    }

    .inchi-content-block__icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .inchi-content-block h2 {
        font-size: 18px;
    }

    .inchi-content-block p {
        font-size: 13px;
        line-height: 1.65;
    }

    .inchi-benefits-grid,
    .inchi-intervals-grid,
    .inchi-authorized-grid {
        grid-template-columns: 1fr;
    }

    .inchi-interval-item,
    .inchi-interval-item:first-child,
    .inchi-interval-item:last-child {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid #dfe7ef;
    }

    .inchi-interval-item:last-child {
        border-bottom: 0;
    }

    .inchi-authorized-grid {
        gap: 0;
    }

    .inchi-authorized-grid li,
    .inchi-authorized-grid li:nth-child(3) {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        min-height: auto;
        padding: 14px 0;
        text-align: left;
        border-right: 0;
        border-bottom: 1px solid #dfe7ef;
    }

    .inchi-authorized-grid li:last-child {
        border-bottom: 0;
    }

    .inchi-authorized-grid .fa {
        font-size: 26px;
        text-align: center;
    }
}

@media only screen and (max-width: 479px) {
    .inchi-content-block {
        display: block;
    }

    .inchi-content-block__icon {
        margin-bottom: 14px;
    }
}

