/* =============================================================
   iPurvey - New Homepage Styles
   Matches the updated Figma design
   ============================================================= */

/* ---- Override old dark header styles ---- */
.index-page .header,
.index-page.scrolled .header,
#header {
    background-color: #ffffff !important;
    background: #ffffff !important;
    box-shadow: none !important;
    border-bottom: 1px solid #F3F4F6 !important;
    --nav-color: #0D0D0D;
    --background-color: #ffffff;
    --heading-color: #0D0D0D;
}

/* ---- CSS Variables ---- */
:root {
    --ip-blue: #1B75BC;
    --ip-blue-dark: #0d5a96;
    --ip-blue-light: #e8f2fb;
    --ip-text-dark: #111827;
    --ip-text-body: #4B5563;
    --ip-text-light: #6B7280;
    --ip-bg-white: #ffffff;
    --ip-bg-light: #f7f9fc;
    --ip-bg-dark: #0f1b2d;
    --ip-border: #e5e7eb;
    --ip-radius: 12px;
    --ip-radius-sm: 8px;
    --ip-shadow: 0 4px 24px rgba(27,117,188,0.10);
    --ip-shadow-card: 0 2px 12px rgba(0,0,0,0.08);
}

/* ---- Reset for new sections ---- */
.ip-hero-section,
.ip-problem-section,
.ip-platform-section,
.ip-eco-section,
.ip-products-section,
.ip-signal-section,
.ip-no-replace-section,
.ip-regulated-section {
    padding: 0;
    background: var(--ip-bg-white);
}

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    width: 100%;
    height: 77px;
    background: #FFFFFF;
    border-bottom: 1px solid #F3F4F6;
    box-shadow: none;
    box-sizing: border-box;
}

#header .container-fluid,
#header .container-xl {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.ip-nav-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ip-nav-items > li > a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 12px;
    gap: 2px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0D0D0D !important;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    line-height: 20px;
}

.ip-nav-items > li > a:hover {
    background: #F3F4F6;
    color: #0083DB !important;
}

/* Dropdown container — hidden by default, shown on hover */
.ip-nav-items > li.dropdown {
    position: relative;
}

.ma-service-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 8px;
    padding-top: 16px;
    min-width: 220px;
    list-style: none;
    z-index: 9999;
    flex-direction: column;
    gap: 4px;
}

.ip-nav-items > li.dropdown:hover .ma-service-dropdown {
    display: flex;
}

.ma-service-dropdown-item {
    list-style: none;
}

.ma-service-dropdown-item a,
.ma-service-dropdown-item a:link,
.ma-service-dropdown-item a:visited {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none !important;
    color: #374151 !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: background 0.18s;
}

.ma-service-dropdown-item a:hover {
    background: #F3F8FF;
}

.ip-nav-logo {
    flex: none;
    order: 0;
    flex-grow: 0;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
}

.ip-logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.ip-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A3A5C;
    letter-spacing: -0.3px;
    line-height: 1;
}

.ip-logo-i {
    color: #00B4A0;
}

.ip-logo-img {
    width: 118px;
    height: 32px;
    object-fit: contain;
    display: block;
}

#header .ip-nav-logo {
    min-width: 118px;
}

#header .ip-nav-logo .ip-logo-img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: none;
}

.ip-nav-cta {
    flex-shrink: 0;
}

.ip-btn-demo {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 20px;
    gap: 6px;
    width: 139px;
    height: 37px;
    background: #0083DB;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    color: #FFFFFF !important;
    text-decoration: none !important;
    white-space: nowrap;
    box-sizing: border-box;
    transition: background 0.2s;
}

.ip-btn-demo:hover {
    background: var(--ip-blue-dark);
    color: #fff !important;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.index-page .main {
    padding-top: 0;
}

.ip-hero-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 48px;
    gap: 32px;
    isolation: isolate;
    max-width: 1440px;
    min-height: 510px;
    background: #fff;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

.ip-hero-section .container,
.ip-hero-section .ip-hero-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.ip-hero-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 24px;
    max-width: 1344px;
    min-height: 350px;
    z-index: 1;
    width: 100%;
}

.ip-hero-left {
    flex: 3;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.ip-hero-badge,
.ip-signal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #EBF5FF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #0083DB;
    white-space: nowrap;
    text-align: center;
}

.ip-hero-badge {
    align-self: flex-start;
}

.ip-signal-badge {
    align-self: flex-start;
}

.ip-hero-right {
    flex: 2;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

.ip-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 53px;
    color: #0D0D0D;
    margin-bottom: 20px;
}

.ip-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #4A4A4A;
    line-height: 22px;
    margin-bottom: 32px;
    max-width: 622px;
}

.ip-hero-desc-line {
    display: block;
}

.ip-hero-btns {
    gap: 12px;
}

.ip-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #0083DB;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 99px;
    text-decoration: none !important;
    transition: background 0.25s;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    line-height: 17px;
    white-space: nowrap;
}

.ip-btn-primary:hover {
    background: #006bb5;
    color: #fff !important;
}

.ip-btn-outline {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 131, 219, 0.08);
    color: #0083DB !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 17px;
    border-radius: 99px;
    border: 1px solid #0083DB;
    text-decoration: none !important;
    transition: background 0.2s;
    line-height: 17px;
    white-space: nowrap;
}

.ip-btn-outline:hover {
    background: rgba(0, 131, 219, 0.15);
    color: #0083DB !important;
}

.ip-arrow {
    font-size: 18px;
    line-height: 1;
}

/* Risk Card */
/* Outer wrapper */
.ip-risk-card {
    background: rgba(0, 131, 219, 0.1);
    border: none;
    border-radius: 28px;
    padding: 12px;
    max-width: 470px;
    width: 100%;
    box-shadow: none;
}

/* Inner container */
.ip-risk-card-inner {
    background: rgba(0, 131, 219, 0.12);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ip-risk-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    display: block;
    margin-bottom: 0;
    letter-spacing: normal;
    text-transform: none;
}

.ip-risk-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    line-height: 24px;
}

.ip-status-badge {
    background: rgba(12, 189, 45, 0.3);
    color: #008B19;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 18px;
    border: none;
    line-height: 17px;
    white-space: nowrap;
}

.ip-risk-card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 0;
}

.ip-risk-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ip-risk-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #FFFFFF;
    border: 0.8px solid #DADADA;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 12px;
    min-height: 67px;
}

.ip-step-num {
    width: 43px;
    height: 43px;
    min-width: 43px;
    background: #0083DB;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 24px;
}

.ip-step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.ip-step-content strong {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #101828;
    line-height: 22px;
    display: block;
}

.ip-step-content span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4A4A4A;
    line-height: 17px;
}

.ip-risk-quote {
    background: #FFFFFF;
    border: 1.5px solid rgba(0, 131, 219, 0.34);
    box-shadow: none;
    border-radius: 16px;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 17px;
    font-style: normal;
}

@supports (-webkit-touch-callout: none) {
    .ip-risk-quote {
        border-color: rgba(0, 131, 219, 0.28);
        box-shadow: none;
    }
}

/* ===================================================
   SECTION SHARED STYLES
   =================================================== */
.ip-section-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 16px;
}

.ip-section-desc {
    font-size: 16px;
    color: var(--ip-text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ip-link-blue {
    font-size: 14px;
    font-weight: 600;
    color: var(--ip-blue) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.ip-link-blue:hover {
    color: var(--ip-blue-dark) !important;
    text-decoration: underline !important;
}

/* ===================================================
   PROBLEM SECTION
   =================================================== */
.ip-problem-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 48px;
    max-width: 1440px;
    min-height: 530px;
    background: #FFFFFF;
    margin: 0 auto;
    width: 100%;
}

.ip-problem-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.ip-problem-heading {
    width: 100%;
    margin-bottom: 32px;
}

.ip-problem-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0D0D0D;
    line-height: 44px;
    margin-bottom: 12px;
    white-space: nowrap;
}

.ip-problem-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 20px;
    max-width: 860px;
}

.ip-problem-cards-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
}

.ip-problem-cards-row > .ip-problem-col {
    flex: 1;
    min-width: 0;
    padding: 0;
}

.ip-problem-card {
    background: #FFFFFF;
    border: 0.8px solid #DADADA;
    border-radius: 24px;
    padding: 24px;
    height: 214px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.ip-problem-card:hover {
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}

.ip-problem-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #FFE2E2;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.ip-problem-card p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #0D0D0D;
    line-height: 22px;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

/* ===================================================
   PLATFORM + ECOSYSTEMS SECTION
   =================================================== */
.ip-platform-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 48px;
    gap: 32px;
    max-width: 1440px;
    min-height: 424px;
    background: linear-gradient(135deg, rgba(236,253,245,0.4) 0%, rgba(239,246,255,0.4) 100%);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.ip-platform-inner {
    width: 100%;
}

.ip-platform-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    max-width: 1344px;
    min-height: 264px;
    width: 100%;
}

.ip-platform-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ip-platform-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 48px;
    color: #0D0D0D;
    margin: 0;
}

.ip-platform-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #0D0D0D;
    margin: 0;
}

.ip-platform-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #0083DB;
}

.ip-platform-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    isolation: isolate;
    width: 398px;
    flex: none;
    flex-grow: 0;
}

/* Fixed Figma artboard; scaled on narrow viewports via slot + container query */
.ip-platform-diagram-slot {
    width: 398px;
    height: 264px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    flex-shrink: 0;
}

.ip-platform-diagram {
    width: 398px;
    height: 264px;
    position: relative;
    flex-shrink: 0;
}

/* Decorative connector SVG */
.ip-pf-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.ip-pf-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.ip-pf-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    height: 48px;
    width: 100%;
}

.ip-pf-item--indent {
    padding-left: 80px;
}

.ip-pf-icon-svg {
    width: 48px;
    height: 48px;
    min-width: 48px;
    flex-shrink: 0;
}

.ip-pf-label {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px 10px;
    gap: 10px;
    width: fit-content;
    height: auto;
    border-bottom: 1px solid #0083DB;
    flex: none;
    order: 1;
    flex-grow: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #101828;
    white-space: nowrap;
}

/* ===================================================
   ECOSYSTEMS SECTION
   =================================================== */
.ip-eco-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 56px 48px;
    gap: 32px;
    max-width: 1440px;
    min-height: 424px;
    background: #FFFFFF;
    border-radius: 32px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ip-eco-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.ip-eco-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 634px;
    flex-shrink: 0;
}

.ip-eco-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 48px;
    color: #0D0D0D;
    align-self: stretch;
    margin: 0;
}

.ip-eco-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #0D0D0D;
    align-self: stretch;
    margin: 0;
}

.ip-eco-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #0083DB;
    align-self: stretch;
    display: block;
}

.ip-eco-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.ip-eco-cards {
    position: relative;
    width: 414px;
    height: 257px;
    overflow: visible;
    flex-shrink: 0;
}

.ip-eco-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px;
    gap: 15px;
    height: 73.6px;
    position: absolute;
    background: #FFFFFF;
    border: 0.8px solid #F3F4F6;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    white-space: nowrap;
}

.ip-eco-avatar {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    flex-shrink: 0;
    display: inline-block;
}

.ip-eco-card-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}

/* Desktop positions (Figma) — stacked / reset in mobile media queries */
.ip-eco-card--uk {
    width: 199px;
    left: -23px;
    top: 50px;
}

.ip-eco-card--ame {
    width: 239.6px;
    left: 130px;
    top: 0;
}

.ip-eco-card--eu {
    width: 136.6px;
    left: 220px;
    top: 90px;
}

.ip-eco-card--trade {
    width: 297.6px;
    left: 35px;
    top: 183px;
}

/* ===================================================
   Platform section responsive
   =================================================== */
@media (max-width: 991px) {
    .ip-platform-section {
        padding: 60px 40px;
    }

    .ip-platform-row {
        flex-direction: column;
        min-height: unset;
    }

    .ip-platform-right {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        align-items: center;
        justify-content: center;
        container-type: inline-size;
        container-name: platform-diag;
    }

    .ip-platform-diagram-slot {
        width: 100%;
        max-width: 398px;
        margin-inline: auto;
        height: 264px;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }

    @container platform-diag (max-width: 397px) {
        .ip-platform-diagram-slot {
            height: calc(264px * (100cqi / 398px));
        }

        .ip-platform-diagram {
            transform: scale(calc(100cqi / 398px));
            transform-origin: top center;
        }
    }
}

@media (max-width: 767px) {
    .ip-platform-section {
        padding: 40px 20px;
    }

    .ip-platform-title {
        font-size: 28px;
        line-height: 36px;
    }

    .ip-platform-desc,
    .ip-platform-tagline {
        font-size: 15px;
    }

    .ip-pf-curve {
        display: none;
    }
}

/* ===================================================
   PRODUCTS SECTION
   =================================================== */
.ip-products-section {
    background: var(--ip-bg-light);
}

.ip-products-header {
    margin-bottom: 8px;
}

.ip-product-card {
    background: #fff;
    border: 1px solid var(--ip-border);
    border-radius: var(--ip-radius);
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

/* Card header row: icon box + name + tagline */
.ip-product-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 4px;
}

.ip-product-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: #F3F4F6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ip-product-name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 3px;
}

.ip-product-tagline {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.4;
}

/* Legacy tag — keep for backward compat but hide */
.ip-product-card-tag {
    display: none;
}

.ip-product-card p {
    font-size: 14px;
    color: var(--ip-text-body);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* ===================================================
   PRODUCTS SECTION V2 (Figma-matched)
   =================================================== */
.ip-prod-section {
    background: #FFFFFF;
    width: 100%;
}

.ip-prod-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 48px;
    gap: 32px;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ip-prod-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    text-align: left;
}

.ip-prod-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 48px;
    color: #0D0D0D;
    margin: 0;
    width: 100%;
}

.ip-prod-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #0D0D0D;
    margin: 0;
    width: 100%;
}

.ip-prod-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #0083DB;
    display: block;
    width: 100%;
}

.ip-prod-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 1344px;
    max-width: 100%;
}

.ip-prod-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
    width: 100%;
}

.ip-prod-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    flex: 1;
    min-width: 0;
    background: #FFFFFF;
    border: 0.8px solid #DADADA;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    box-sizing: border-box;
}

.ip-prod-card--invisible {
    opacity: 0;
    pointer-events: none;
}

.ip-prod-card-head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.ip-prod-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: none;
    border-radius: 0;
    flex-shrink: 0;
}

.ip-prod-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.ip-prod-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #101828;
    margin: 0;
}

.ip-prod-subtag {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #4A4A4A;
    margin: 0;
    overflow-wrap: anywhere;
}

.ip-prod-desc-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #4A4A4A;
    margin: 0;
    flex: 1;
    overflow-wrap: anywhere;
}

.ip-prod-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #F3F4F6;
    margin: 0;
    align-self: stretch;
}

.ip-prod-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.ip-prod-learn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #0083DB;
    text-decoration: none;
}

.ip-prod-learn:hover {
    text-decoration: underline;
    color: #0065aa;
}

/* ===================================================
   SIGNAL TO ACTION SECTION
   =================================================== */
.ip-signal-section {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.4) 0%, rgba(239, 246, 255, 0.4) 100%);
}

.ip-signal-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 48px;
    gap: 32px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ip-signal-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.ip-signal-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 48px;
    color: #0D0D0D;
    margin: 0;
}

.ip-signal-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #0D0D0D;
    margin: 0;
    max-width: 100%;
}

@media (min-width: 992px) {
    .ip-signal-subtitle {
        white-space: nowrap;
    }
}

/* Main row */
.ip-signal-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    width: 100%;
}

/* Left: steps column */
.ip-signal-steps-col {
    flex: none;
    width: 457px;
}

.ip-signal-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.ip-signal-vline {
    position: absolute;
    left: 19px;
    top: 24px;
    width: 0;
    height: 298px;
    border-left: 3px dashed #0083DB;
    opacity: 0.2;
    z-index: 0;
    display: none !important;
    border-left: none;
}

.ip-signal-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    width: 457px;
    min-height: 68px;
    position: relative;
    z-index: 1;
}

.ip-signal-num-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    position: relative;
}

.ip-signal-step:not(:last-child) .ip-signal-num-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 46px;
    transform: translateX(-50%);
    width: 3px;
    height: 46px;
    border-radius: 3px;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(0, 131, 219, 0.24) 0 9px,
        transparent 9px 16px
    );
}

.ip-signal-num {
    width: 40px;
    height: 40px;
    background: #0083DB;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.ip-signal-step-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 0 10px;
    gap: 8px;
    width: 401px;
    min-height: 68px;
    border-left: 1px solid #0083DB;
    box-sizing: border-box;
}

.ip-signal-step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #0D0D0D;
}

.ip-signal-step-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #0D0D0D;
    width: 391px;
    max-width: 100%;
}

/* Right: video column */
.ip-signal-video-col {
    flex: 1;
    min-width: 0;
}

.ip-signal-video {
    width: 100%;
    max-width: none;
    height: 359px;
    background: #E5E7EB;
    border-radius: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ip-signal-video-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #0D0D0D;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    padding: 4px 8px;
}

.ip-signal-video-frame {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
    display: block;
}

/* Limitations card */
.ip-signal-limits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 32px;
    gap: 10px;
    width: 100%;
    background: #EEF6FF;
    border: 1px solid #CCE0F5;
    border-radius: 16px;
    box-sizing: border-box;
}

.ip-signal-limits-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.ip-signal-limits-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #DBEAFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ip-signal-limits-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.ip-signal-limits-body {
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.ip-signal-limits-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #0D0D0D;
    display: block;
    margin-bottom: 4px;
}

.ip-signal-limits-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #374151;
    margin: 0 0 4px 0;
}

/* ===================================================
   NO REPLACE SECTION
   =================================================== */
/* ===================================================
   NO REPLACE SECTION
   =================================================== */
.ip-no-replace-section {
    background: #FFFFFF;
}

.ip-nr-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 48px;
    gap: 32px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: auto;
}

.ip-nr-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 650px;
    flex-shrink: 0;
}

.ip-nr-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 48px;
    color: #0D0D0D;
    margin: 0;
}

.ip-nr-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #0D0D0D;
    margin: 0;
}

.ip-nr-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 398px;
    flex-shrink: 0;
}

.ip-nr-diagram-slot {
    width: 398px;
    height: 264px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    flex-shrink: 0;
}

.ip-nr-diagram {
    width: 398px;
    height: 264px;
    position: relative;
    flex-shrink: 0;
}

.ip-nr-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ip-nr-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.ip-nr-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 16px;
    width: 398px;
    height: 48px;
    filter: drop-shadow(0px 2px 8px rgba(0,0,0,0.05));
    border-radius: 24px;
}

.ip-nr-item--indent {
    padding-left: 80px;
}

.ip-nr-label {
    display: flex;
    align-items: center;
    padding: 10px;
    height: 39px;
    border-bottom: 1px solid #0083DB;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #101828;
    white-space: nowrap;
}

/* ===================================================
   REGULATED SECTION
   =================================================== */
.ip-regulated-section {
    background: #fff;
}

.ip-reg-outer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ip-reg-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 32px;
    gap: 44px;
    width: 100%;
    background: rgba(0, 131, 219, 0.06);
    border-radius: 24px;
    box-sizing: border-box;
}

.ip-reg-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 44px;
    width: 100%;
}

.ip-reg-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    flex: 1;
    max-width: 547px;
}

.ip-reg-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #0083DB;
    border-radius: 18px;
    flex-shrink: 0;
}

.ip-reg-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 44px;
    line-height: 53px;
    color: #0D0D0D;
    margin: 0;
}

.ip-reg-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #0D0D0D;
    margin: 0;
}

.ip-reg-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 24px;
    gap: 16px;
    width: 505px;
    flex-shrink: 0;
    background: #FFFFFF;
    border: 0.8px solid #DADADA;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-sizing: border-box;
}

.ip-reg-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: 44px;
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.05));
    border-radius: 16px;
}

.ip-reg-dot {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #0083DB;
    border-radius: 999px;
    flex-shrink: 0;
}

.ip-reg-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #101828;
}

.ip-reg-label-nowrap {
    white-space: nowrap;
    font-size: 16px;
}

/* ===================================================
   FOOTER
   =================================================== */
.ip-footer {
    background: linear-gradient(99.71deg, #132236 0.14%, #00251D 51.92%, #001D5E 99.86%);
    color: #fff;
}

/* Force all links inside footer away from Bootstrap default blue */
.ip-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.ip-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 48px 36px;
    gap: 32px;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Top columns row */
.ip-footer-cols {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
    width: 100%;
}

/* Brand column */
.ip-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 200px;
    max-width: 320px;
}

.ip-footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.ip-footer-logo img {
    height: 36px;
    width: auto;
    filter: none;
}

.ip-footer-brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.ip-footer-brand-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #6B7280;
    margin: 0;
}

/* Link columns grid (Products / Platform / Company / Legal) */
.ip-footer-links-grid {
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
}

/* Nav columns */
.ip-footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 140px;
}

.ip-footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 0;
}

.ip-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ip-footer-links a,
#footer .ip-footer-links a,
#footer .ip-footer-links li a,
#footer .ip-footer-links li a:link,
#footer .ip-footer-links li a:visited {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

#footer .ip-footer-links a:hover,
#footer .ip-footer-links li a:hover {
    color: #ffffff !important;
}

/* Bottom row: social + copyright */
.ip-footer-bottom-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 24px;
    margin-top: 8px;
    gap: 20px;
}

.ip-footer-social-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.ip-footer-social-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
}

.ip-footer-connect-section {
    width: 100%;
}

.ip-footer-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.ip-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.2s;
    overflow: hidden;
    background: transparent;
}

.ip-social-icon img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.ip-social-icon:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* Certified by — right side of bottom row */
.ip-footer-certified {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.ip-footer-certified-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    white-space: nowrap;
}

.ip-footer-cert-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.ip-cert-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.ip-footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 360px;
}

.ip-footer-newsletter-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

.ip-footer-newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.ip-footer-newsletter-input {
    flex: 1;
    height: 56px;
    border-radius: 16px;
    border: none;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #4B5563;
    background: #FFFFFF;
}

.ip-footer-newsletter-input:focus {
    outline: 2px solid rgba(0, 131, 219, 0.45);
}

.ip-footer-newsletter-btn {
    height: 56px;
    border: none;
    border-radius: 16px;
    background: #0083DB;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    padding: 0 28px;
}

.ip-footer-newsletter-btn:hover {
    background: #006bb5;
}

/* Copyright line */
.ip-footer-copy {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.ip-footer-copy span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}

.ip-footer-copy-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.ip-footer-copy-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #6B7280 !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.ip-footer-copy-links a:hover {
    color: rgba(255,255,255,0.85) !important;
}

/* ===================================================
   MOBILE NAVIGATION TOGGLE
   =================================================== */
.mobile-nav-toggle {
    font-size: 22px;
    color: #111827;
    cursor: pointer;
    display: none;
    line-height: 1;
    padding: 8px 10px;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }
    #header {
        height: auto;
        padding: 12px 16px;
        align-items: flex-start;
    }
    #header .container-fluid,
    #header .container-xl {
        flex-wrap: wrap;
        align-items: flex-start;
    }
    #header .ip-nav-logo {
        order: 1;
    }
    #navmenu {
        order: 3;
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        background: #fff !important;
        box-shadow: none !important;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        z-index: auto !important;
        overflow: hidden !important;
        max-height: 0 !important;
        opacity: 0 !important;
        padding: 0 0 0 !important;
        border-radius: 0 0 16px 16px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        margin-top: 12px;
    }
    #navmenu.mobile-nav-active,
    body.mobile-nav-active #navmenu,
    .mobile-nav-active #navmenu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        background: #fff !important;
        box-shadow: none !important;
        max-height: 1000px !important;
        opacity: 1 !important;
        padding: 12px 16px 12px !important;
        border-radius: 0 0 16px 16px !important;
        margin-top: 12px !important;
    }
    .ip-nav-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    .ip-nav-items > li {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }
    .ip-nav-items > li > a {
        display: block;
        padding: 10px 0;
        font-size: 15px;
    }
    .ma-service-dropdown {
        position: static !important;
        box-shadow: none !important;
        display: none;
        padding-left: 16px;
    }

    .ip-nav-mobile-footer {
        margin-top: 0;
        padding: 12px 0 0;
        gap: 12px;
        width: 100%;
        flex-shrink: 0;
    }

    .ip-nav-mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 14px 18px;
        border-radius: 12px;
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.25;
        text-decoration: none !important;
        text-align: center;
        box-sizing: border-box;
        transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .ip-nav-mobile-btn--primary {
        background: #0083DB;
        color: #fff !important;
        border: 1px solid #0083DB;
    }

    .ip-nav-mobile-btn--primary:hover {
        background: #006bb3;
        border-color: #006bb3;
        color: #fff !important;
    }

    .ip-nav-mobile-btn--secondary {
        background: #f0f7ff;
        color: #0083DB !important;
        border: 1px solid #cce0f5;
    }

    .ip-nav-mobile-btn--secondary:hover {
        background: #e2eefc;
        border-color: #b8d4f0;
        color: #0065aa !important;
    }
}

/* ===================================================
   RESPONSIVE ADJUSTMENTS
   =================================================== */

@media (max-width: 991px) {
    .ip-hero-section {
        padding: 60px 40px;
    }

    /* Do not zero vertical padding — conflicts with @media (max-width: 1199px) #header */
    #header {
        padding: 12px 32px;
    }

    .ip-hero-row {
        flex-direction: column;
        min-height: unset;
    }

    .ip-hero-left,
    .ip-hero-right {
        flex: unset;
        width: 100%;
        justify-content: center;
    }

    .ip-problem-title {
        white-space: normal;
    }

    .ip-hero-left {
        align-items: center;
        text-align: center;
    }

    .ip-hero-badge {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .ip-hero-title {
        margin-left: auto;
        margin-right: auto;
    }

    .ip-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .ip-hero-desc-line {
        display: block;
        text-align: center;
    }

    .ip-hero-btns {
        justify-content: center;
        width: 100%;
    }

    .ip-regulated-card {
        padding: 40px 28px;
    }

    .ip-risk-card {
        max-width: 100%;
    }

    .ip-eco-section,
    .ip-problem-section {
        padding: 40px 40px;
    }

    .ip-eco-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .ip-eco-left {
        width: 100%;
        max-width: 100%;
        flex-shrink: 1;
    }

    .ip-eco-right {
        width: 100%;
        justify-content: center;
    }

    .ip-problem-cards-row {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 16px;
    }

    .ip-problem-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .ip-problem-card {
        height: auto;
        min-height: 0;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .ip-problem-card p {
        font-size: 16px;
        line-height: 22px;
    }

    .ip-problem-title {
        white-space: normal;
    }

    .ip-prod-inner,
    .ip-signal-inner {
        padding: 40px 40px;
    }

    .ip-prod-row {
        flex-direction: column;
        align-items: stretch;
    }

    .ip-prod-card--invisible {
        display: none;
    }

    .ip-signal-row {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .ip-signal-steps-col {
        width: 100%;
        max-width: 100%;
    }

    .ip-signal-step {
        width: 100%;
        max-width: 100%;
    }

    .ip-signal-step-text {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .ip-signal-step-desc {
        width: 100%;
        max-width: 100%;
    }

    .ip-signal-video {
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 220px;
    }

    .ip-reg-outer {
        padding: 40px 24px;
    }

    .ip-reg-row {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .ip-reg-left {
        max-width: 100%;
    }

    .ip-reg-right {
        width: 100%;
        max-width: 100%;
    }

    .ip-reg-title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .index-page {
        overflow-x: hidden;
    }

    .ip-hero-section {
        padding: 40px 20px;
        min-height: 0;
        align-items: center;
    }

    .ip-hero-left {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .ip-hero-badge {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    #header {
        padding: 0 16px;
    }

    .ip-hero-title {
        font-size: 28px;
        line-height: 36px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 100%;
    }

    .ip-hero-desc {
        text-align: center;
        line-height: 22px;
        margin-bottom: 24px;
        font-size: 16px;
    }

    .ip-hero-desc-line {
        display: block;
        text-align: center;
        width: 100%;
    }

    .ip-eco-section {
        padding: 32px 20px;
        align-items: stretch;
        min-height: 0;
    }

    .ip-eco-title {
        font-size: 26px;
        line-height: 34px;
    }

    .ip-eco-desc {
        font-size: 16px;
        line-height: 22px;
    }

    .ip-eco-tagline {
        font-size: 16px;
        line-height: 22px;
    }

    .ip-eco-cards {
        width: 100%;
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .ip-eco-cards .ip-eco-card {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        white-space: normal;
        height: auto;
        min-height: 0;
        align-self: stretch;
    }

    .ip-eco-card-label {
        white-space: normal;
    }

    .ip-problem-title {
        font-size: 26px;
        line-height: 34px;
        white-space: normal;
    }

    .ip-section-title {
        font-size: 1.5rem;
    }

    .ip-regulated-card {
        padding: 32px 20px;
    }

    .ip-regulated-title {
        font-size: 1.5rem;
    }

    .ip-video-placeholder {
        min-height: 220px;
    }

    .ip-platform-item {
        font-size: 14px;
        padding: 12px 16px;
    }

    .ip-pf-curve {
        display: none;
    }

    .ip-btn-primary,
    .ip-btn-outline {
        font-size: 14px;
        padding: 10px 20px;
    }

    .ip-prod-inner,
    .ip-signal-inner {
        padding: 40px 20px;
    }

    .ip-prod-title {
        font-size: 28px;
        line-height: 36px;
    }

    .ip-prod-desc,
    .ip-prod-tagline {
        font-size: 16px;
        line-height: 22px;
    }

    .ip-signal-title {
        font-size: 28px;
        line-height: 36px;
    }

    .ip-signal-subtitle {
        font-size: 16px;
        line-height: 22px;
        white-space: normal;
    }

    .ip-hero-badge,
    .ip-signal-badge {
        white-space: nowrap;
        font-size: clamp(10px, 2.85vw, 13px);
        line-height: 1.3;
        padding: 6px 12px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .ip-signal-header {
        width: 100%;
    }

    .ip-signal-step-text {
        border-left: 1px solid #0083DB;
        padding-left: 10px;
        flex: 1;
        min-width: 0;
    }

    .ip-signal-step:not(:last-child) .ip-signal-num-wrap::after {
        left: 50%;
    }

    .ip-footer {
        padding: 0;
    }

    .ip-footer-inner {
        padding: 40px 20px 32px;
        gap: 28px;
    }

    .ip-footer-cols {
        flex-direction: column;
        gap: 28px;
    }

    .ip-footer-brand {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .ip-footer-links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
        width: 100%;
    }

    .ip-footer-col {
        flex: none;
        min-width: unset;
    }

    .ip-footer-col--right {
        align-items: flex-end;
        text-align: right;
    }

    .ip-footer-col--right .ip-footer-links {
        align-items: flex-end;
    }

    .ip-footer-heading {
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
    }

    .ip-footer-connect-section {
        width: 100%;
        margin-top: 32px;
        padding-top: 0;
        clear: both;
    }

    .ip-footer-bottom-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
        row-gap: 0;
        align-items: start;
        justify-content: stretch;
        width: 100%;
        padding-top: 0;
        margin-top: 0;
        flex-wrap: nowrap;
    }

    .ip-footer-newsletter--desktop {
        display: none !important;
    }

    .ip-footer-social-block {
        grid-column: 1;
        flex: none;
        min-width: 0;
        max-width: 100%;
        gap: 10px;
    }

    .ip-footer-social-label {
        white-space: nowrap;
        font-size: 14px;
        line-height: 20px;
    }

    .ip-footer-socials {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
    }

    .ip-social-icon,
    .ip-social-icon img {
        width: 28px;
        height: 28px;
    }

    .ip-footer-certified {
        grid-column: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        flex-shrink: 0;
    }

    .ip-footer-certified-label {
        white-space: nowrap;
        text-align: right;
    }

    .ip-footer-cert-logos {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }

    .ip-cert-logo {
        height: 34px;
        max-width: 72px;
        width: auto;
    }

    .ip-footer-cols {
        margin-bottom: 0;
    }

    .ip-footer-links-grid {
        row-gap: 28px;
    }

    .ip-footer-copy {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .ip-hero-badge,
    .ip-signal-badge {
        font-size: 10px;
        padding: 5px 10px;
        letter-spacing: -0.02em;
    }

    .ip-signal-limits {
        padding: 20px 16px;
    }

    .ip-footer-inner {
        padding: 32px 16px 28px;
    }

    .ip-footer-connect-section {
        margin-top: 28px;
    }

    .ip-footer-links-grid {
        gap: 24px 16px;
        row-gap: 24px;
    }

    .ip-footer-socials {
        gap: 10px;
    }

    .ip-social-icon,
    .ip-social-icon img {
        width: 26px;
        height: 26px;
    }

    .ip-cert-logo {
        height: 30px;
        max-width: 64px;
    }

    .ip-footer-cert-logos {
        gap: 8px;
    }

    .ip-reg-label-nowrap {
        white-space: normal;
    }

    .ip-reg-right {
        padding: 12px 16px;
    }

    .ip-btn-demo {
        padding: 8px 14px;
        font-size: 13px;
        width: auto;
        min-width: 118px;
    }
}

@media (max-width: 360px) {
    .ip-hero-badge,
    .ip-signal-badge {
        font-size: 9px;
        padding: 4px 8px;
    }
}

@media (max-width: 575px) {
    .ip-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .ip-btn-primary,
    .ip-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .ip-product-card,
    .ip-problem-card {
        padding: 20px 16px;
    }

    .ip-problem-cards-row {
        flex-wrap: wrap;
    }

    .ip-problem-cards-row > .ip-problem-col {
        flex: 0 0 100%;
    }

    .ip-problem-card {
        height: auto;
    }

    .ip-prod-card-head {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* ===== No Replace responsive ===== */
@media (max-width: 1100px) {
    .ip-nr-inner {
        flex-direction: column;
        padding: 60px 40px;
        min-height: auto;
        align-items: flex-start;
    }

    .ip-nr-left {
        width: 100%;
    }

    .ip-nr-title {
        font-size: 32px;
        line-height: 40px;
    }

    .ip-nr-right {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        justify-content: center;
        container-type: inline-size;
        container-name: nr-diag;
    }

    .ip-nr-diagram-slot {
        width: 100%;
        max-width: 398px;
        margin-inline: auto;
        height: 264px;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }

    @container nr-diag (max-width: 397px) {
        .ip-nr-diagram-slot {
            height: calc(264px * (100cqi / 398px));
        }

        .ip-nr-diagram {
            transform: scale(calc(100cqi / 398px));
            transform-origin: top center;
        }
    }

    .ip-nr-item {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .ip-nr-inner {
        padding: 40px 20px;
    }

    .ip-nr-title {
        font-size: 26px;
        line-height: 34px;
    }

    .ip-nr-desc {
        font-size: 16px;
    }

    .ip-nr-item--indent {
        padding-left: 80px;
    }

    .ip-nr-label {
        font-size: 14px;
        white-space: normal;
    }
}
