:root {
    --ips-orange: #f35a1f;
    --ips-orange-dark: #cf4211;
    --ips-blue: #0b2545;
    --ips-blue-soft: #153b67;
    --ips-ink: #18212f;
    --ips-muted: #697386;
    --ips-border: #e6e9ee;
    --ips-bg: #f6f8fb;
    --ips-white: #ffffff;
    --ips-steel: #9aa4b2;
    --ips-dark: #15191f;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ips-ink);
    background: var(--ips-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover,
a:focus {
    color: var(--ips-orange);
    text-decoration: none;
}

button {
    font: inherit;
}

.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--ips-white);
    background: var(--ips-blue);
    border-radius: 4px;
}

.skip-link:focus {
    top: 12px;
}

.container {
    width: min(1180px, calc(100% - 32px));
}

.top-strip {
    color: #5d6674;
    background: #f8fafc;
    border-bottom: 1px solid var(--ips-border);
    font-size: 13px;
}

.top-strip__inner,
.top-strip__left,
.top-strip__right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-strip__inner {
    justify-content: space-between;
    min-height: 34px;
}

.top-strip a {
    color: #566171;
}

.top-strip i {
    color: var(--ips-orange);
    margin-right: 5px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(230, 233, 238, 0.9);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 35px rgba(18, 34, 58, 0.08);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand img {
    width: 126px;
    height: 84px;
    object-fit: contain;
}

.brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand strong {
    color: var(--ips-blue);
    font-size: 21px;
}

.brand small {
    color: var(--ips-muted);
    font-size: 12px;
}

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

.nav-item {
    position: relative;
}

.nav-list > li > a {
    position: relative;
    display: block;
    padding: 28px 13px 24px;
    color: #4b5565;
    font-size: 14px;
    font-weight: 700;
}

.nav-list > li > a::after {
    position: absolute;
    right: 13px;
    bottom: 18px;
    left: 13px;
    height: 2px;
    content: "";
    background: var(--ips-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after,
.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
    transform: scaleX(1);
}

.nav-list > li > a.active,
.has-dropdown:hover > a,
.has-dropdown:focus-within > a {
    color: var(--ips-orange);
}

.dropdown-parent {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.dropdown-parent i {
    color: inherit;
    font-size: 12px;
    transition: transform 180ms ease;
}

.has-dropdown:hover .dropdown-parent i,
.has-dropdown:focus-within .dropdown-parent i {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    z-index: 100;
    min-width: 286px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    border-top: 3px solid var(--ips-orange);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 46px rgba(17, 31, 49, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    color: #4b5565;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
    color: var(--ips-white);
    background: var(--ips-orange);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    border-radius: 4px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ips-blue);
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    overflow: hidden;
    color: var(--ips-white);
}

.hero-bg,
.hero-overlay,
.advantage-bg,
.page-hero__bg {
    position: absolute;
    inset: 0;
}

.hero-bg,
.advantage-bg,
.page-hero__bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(11, 37, 69, 0.92) 0%, rgba(11, 37, 69, 0.7) 42%, rgba(11, 37, 69, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    padding: 80px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ips-orange);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    content: "";
    background: currentColor;
}

.hero-content h1,
.page-hero h1 {
    margin: 15px 0 18px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-content p,
.page-hero p {
    width: min(660px, 100%);
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
}

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

.btn-primary-action,
.btn-secondary-action,
.text-link-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 4px;
    font-weight: 800;
    line-height: 1.2;
}

.btn-primary-action {
    color: var(--ips-white);
    background: var(--ips-orange);
    border: 1px solid var(--ips-orange);
}

.btn-primary-action:hover,
.btn-primary-action:focus {
    color: var(--ips-white);
    background: var(--ips-orange-dark);
    border-color: var(--ips-orange-dark);
    transform: translateY(-1px);
}

.btn-secondary-action {
    color: var(--ips-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.btn-secondary-action.dark {
    color: var(--ips-blue);
    background: var(--ips-white);
    border-color: var(--ips-border);
}

.btn-secondary-action:hover,
.btn-secondary-action:focus {
    color: var(--ips-white);
    background: rgba(255, 255, 255, 0.18);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(640px, 100%);
    margin-top: 40px;
}

.hero-stats div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
}

.hero-stats strong {
    display: block;
    color: var(--ips-white);
    font-size: 23px;
    line-height: 1.1;
}

.hero-stats span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.image-banner {
    position: relative;
    overflow: hidden;
    background: #05070a;
}

.image-slider,
.banner-slides,
.banner-slide {
    height: 590px;
}

.image-slider {
    position: relative;
}

.banner-slides {
    position: relative;
    overflow: hidden;
    background: #05070a;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease, transform 900ms ease;
    visibility: hidden;
}

.banner-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.banner-slide__image {
    width: 100%;
    height: 100%;
    color: transparent;
    font-size: 0;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
}

.banner-slide.is-active .banner-slide__image {
    animation: bannerZoom 4500ms ease-out forwards;
}

.image-slider__dots {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.image-slider__dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    background: transparent;
    border: 2px solid var(--ips-white);
    border-radius: 50%;
}

.image-slider__dots button.is-active {
    background: var(--ips-orange);
    border-color: var(--ips-orange);
}

.image-slider__control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-grid;
    width: 64px;
    height: 76px;
    color: var(--ips-white);
    background: rgba(0, 0, 0, 0.42);
    border: 0;
    border-radius: 4px;
    place-items: center;
    transform: translateY(-50%);
    transition: background 180ms ease;
}

.image-slider__control--prev {
    left: 0;
}

.image-slider__control--next {
    right: 0;
}

.image-slider__control i {
    font-size: 30px;
}

.image-slider__control:hover,
.image-slider__control:focus {
    background: var(--ips-orange);
}

@keyframes bannerZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1);
    }
}

.feature-strip {
    padding: 34px 0;
    background: var(--ips-white);
    border-bottom: 1px solid var(--ips-border);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 15px;
    row-gap: 4px;
    align-items: start;
}

.feature-item i {
    display: inline-grid;
    width: 54px;
    height: 54px;
    color: var(--ips-white);
    background: var(--ips-orange);
    border-radius: 50%;
    place-items: center;
    font-size: 20px;
    grid-row: 1 / span 2;
}

.feature-item h2 {
    grid-column: 2;
    margin: 0 0 6px;
    color: var(--ips-blue);
    font-size: 18px;
    font-weight: 800;
}

.feature-item p {
    grid-column: 2;
    margin: 0;
    color: var(--ips-muted);
    font-size: 14px;
}

.section-padding {
    padding: 86px 0;
}

.bg-soft {
    background: var(--ips-bg);
}

.section-heading {
    width: min(760px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading.text-left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.content-block h2 {
    margin: 10px 0 13px;
    color: var(--ips-blue);
    font-size: 36px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0;
}

.section-heading p,
.content-block p {
    margin: 0 0 16px;
    color: var(--ips-muted);
}

.section-heading--light h2,
.section-heading--light p {
    color: var(--ips-white);
}

.section-heading--light p {
    color: rgba(255, 255, 255, 0.76);
}

.product-grid {
    margin-top: -24px;
}

.product-grid > [class*="col-"] {
    margin-top: 24px;
}

.product-card,
.process-card,
.value-panel,
.contact-panel,
.quote-form,
.product-detail-card {
    border-radius: 8px;
}

.product-card {
    height: 100%;
    overflow: hidden;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    box-shadow: 0 16px 40px rgba(17, 31, 49, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
    border-color: rgba(243, 90, 31, 0.35);
    box-shadow: 0 20px 48px rgba(17, 31, 49, 0.12);
    transform: translateY(-3px);
}

.product-card__image {
    display: block;
    height: 186px;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
    border-bottom: 1px solid var(--ips-border);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__body {
    padding: 18px;
}

.product-card__body span {
    display: block;
    margin-bottom: 8px;
    color: var(--ips-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card__body h2,
.product-card__body h3 {
    margin: 0 0 9px;
    color: var(--ips-blue);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.product-card__body p {
    margin: 0;
    color: var(--ips-muted);
    font-size: 14px;
}

.product-card--large .product-card__image {
    height: 220px;
}

.card-link,
.text-link-action {
    color: var(--ips-orange);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-weight: 800;
}

.center-action {
    margin-top: 36px;
    text-align: center;
}

.quote-band {
    padding: 86px 0;
    color: var(--ips-white);
    background: linear-gradient(135deg, var(--ips-blue) 0%, #111821 100%);
}

.quote-layout {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.capability-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.capability-list div,
.dark-check-grid div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}

.capability-list i,
.dark-check-grid i {
    color: var(--ips-orange);
    margin-top: 4px;
}

.quote-form {
    padding: 26px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.quote-form--light {
    color: var(--ips-ink);
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    box-shadow: 0 18px 50px rgba(17, 31, 49, 0.08);
}

.quote-form h2,
.quote-form h3 {
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    color: var(--ips-ink);
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    border-radius: 4px;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--ips-orange);
    box-shadow: 0 0 0 3px rgba(243, 90, 31, 0.12);
}

.quote-form .btn-primary-action {
    width: 100%;
    border: 0;
}

.advantage-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    color: var(--ips-white);
}

.advantage-section::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: rgba(8, 15, 24, 0.84);
}

.service-card .product-card__body {
    min-height: 228px;
}

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

.area-card {
    min-height: 205px;
    padding: 24px;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(17, 31, 49, 0.05);
}

.area-card i {
    display: inline-grid;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    color: var(--ips-white);
    background: var(--ips-orange);
    border-radius: 50%;
    place-items: center;
}

.area-card h3 {
    margin: 0 0 9px;
    color: var(--ips-blue);
    font-size: 19px;
    font-weight: 800;
}

.area-card p,
.faq-card p {
    margin: 0;
    color: var(--ips-muted);
}

.area-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}

.area-city-list li {
    padding: 6px 8px;
    color: #415066;
    background: #f8fafc;
    border: 1px solid var(--ips-border);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.area-card__link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--ips-orange);
    font-size: 13px;
    font-weight: 900;
}

.advantage-section .container {
    position: relative;
    z-index: 2;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.advantage-item {
    min-height: 170px;
    padding: 22px 18px;
    border-left: 2px solid rgba(243, 90, 31, 0.8);
    background: rgba(255, 255, 255, 0.07);
}

.advantage-item strong {
    color: var(--ips-orange);
    font-size: 30px;
    line-height: 1;
}

.advantage-item h3 {
    margin: 14px 0 8px;
    color: var(--ips-white);
    font-size: 17px;
    font-weight: 800;
}

.advantage-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.industry-cloud,
.standards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.industry-cloud span,
.standards-row span {
    padding: 11px 14px;
    color: var(--ips-blue);
    background: var(--ips-bg);
    border: 1px solid var(--ips-border);
    border-radius: 4px;
    font-weight: 800;
}

.industry-cloud--large span {
    padding: 12px 16px;
    font-size: 15px;
}

.location-copy-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 26px;
    align-items: center;
    padding: 30px;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(17, 31, 49, 0.06);
}

.location-copy-panel h2 {
    margin: 10px 0 12px;
    color: var(--ips-blue);
    font-size: 32px;
    line-height: 1.18;
    font-weight: 800;
}

.location-copy-panel p {
    margin: 0 0 14px;
    color: var(--ips-muted);
}

.location-copy-panel p:last-child {
    margin-bottom: 0;
}

.certification-section {
    background: var(--ips-white);
}

.certification-heading {
    margin-bottom: 52px;
    text-align: center;
}

.certification-heading h2 {
    margin: 0;
    color: var(--ips-blue);
    font-size: 56px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: min(920px, 100%);
    margin: 0 auto;
}

.certification-card {
    display: flex;
    min-height: 260px;
    min-width: 0;
    padding: 30px 22px 28px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #fbfcfe;
    border: 1px solid rgba(230, 233, 238, 0.78);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(17, 31, 49, 0.06);
    text-align: center;
}

.certification-card:hover,
.certification-card:focus {
    box-shadow: 0 16px 36px rgba(17, 31, 49, 0.1);
    transform: translateY(-2px);
}

.certification-card__image {
    display: flex;
    width: 116px;
    height: 128px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 2px;
}

.certification-card__image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certification-card strong {
    display: block;
    color: #2f65e1;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 800;
}

.certification-card > span:last-child {
    display: block;
    margin-top: 8px;
    color: #4b5565;
    font-size: 22px;
    line-height: 1.2;
}

.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 410px;
    overflow: hidden;
    color: var(--ips-white);
}

.page-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(90deg, rgba(11, 37, 69, 0.92), rgba(11, 37, 69, 0.58));
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.compact-hero {
    min-height: 360px;
}

.product-page-hero {
    min-height: 430px;
    background: var(--ips-blue);
}

.product-page-hero .page-hero__bg {
    background:
        radial-gradient(circle at 16% 50%, rgba(243, 90, 31, 0.2), transparent 34%),
        linear-gradient(135deg, #071628 0%, #0b2545 48%, #153b67 100%);
    background-size: cover;
}

.product-page-hero::before {
    background: linear-gradient(90deg, rgba(7, 22, 40, 0.78), rgba(7, 22, 40, 0.46));
}

.product-hero-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
    gap: 44px;
    align-items: center;
    padding: 62px 0;
}

.product-page-hero .product-hero-layout {
    grid-template-columns: minmax(0, 760px);
}

.product-hero-image {
    display: flex;
    min-height: 280px;
    padding: 26px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.product-hero-image img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

.product-hero-copy {
    min-width: 0;
}

.product-hero-copy p {
    width: min(720px, 100%);
}

.orange-title-band {
    padding: 17px 0;
    color: var(--ips-white);
    background: var(--ips-orange);
}

.orange-title-band strong {
    font-size: 20px;
    text-transform: uppercase;
}

.filter-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-btn {
    min-height: 42px;
    padding: 10px 14px;
    color: var(--ips-blue);
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    border-radius: 4px;
    font-weight: 800;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--ips-white);
    background: var(--ips-orange);
    border-color: var(--ips-orange);
}

.align-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.rounded-media {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 52px rgba(17, 31, 49, 0.12);
}

.content-block {
    padding: 20px 0 20px 28px;
}

.about-showcase {
    background: linear-gradient(90deg, #ffffff 0%, #f8fafc 100%);
}

.about-showcase__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 46px;
    align-items: center;
}

.about-showcase__copy .eyebrow::before {
    display: none;
}

.about-showcase__copy h2 {
    margin: 14px 0 24px;
    color: #071628;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(11, 37, 69, 0.08);
}

.about-showcase__copy p {
    margin: 0 0 16px;
    max-width: 560px;
    color: var(--ips-muted);
    font-size: 16px;
    line-height: 1.68;
    font-weight: 600;
}

.about-showcase__copy p:last-of-type {
    margin-bottom: 26px;
}

.about-showcase__list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
}

.about-showcase__list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--ips-ink);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.about-showcase__list i {
    display: inline-flex;
    width: 21px;
    height: 21px;
    align-items: center;
    justify-content: center;
    color: var(--ips-white);
    background: var(--ips-orange);
    border-radius: 50%;
    font-size: 11px;
    line-height: 1;
}

.about-showcase__button {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 18px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #071628;
    background: rgba(255, 255, 255, 0.74);
    border: 2px solid #c3ccd8;
    border-radius: 4px;
    box-shadow: 0 8px 22px rgba(17, 31, 49, 0.1);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.about-showcase__button:hover,
.about-showcase__button:focus {
    color: var(--ips-white);
    background: var(--ips-orange);
    border-color: var(--ips-orange);
    transform: translateY(-1px);
}

.about-showcase__media {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8px;
}

.about-showcase__media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 4px solid var(--ips-white);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(17, 31, 49, 0.12);
}

.strength-grid,
.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.strength-item,
.quality-item {
    min-height: 116px;
    padding: 21px;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(17, 31, 49, 0.05);
}

.strength-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--ips-blue);
    font-weight: 800;
}

.strength-item i,
.quality-item i {
    color: var(--ips-orange);
}

.quality-item h3 {
    margin: 14px 0 0;
    color: var(--ips-blue);
    font-size: 17px;
    line-height: 1.35;
}

.mission-row {
    margin-top: -20px;
}

.mission-row > [class*="col-"] {
    margin-top: 20px;
}

.value-panel {
    height: 100%;
    overflow: hidden;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    box-shadow: 0 18px 42px rgba(17, 31, 49, 0.08);
}

.value-panel img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.value-panel div {
    padding: 24px;
}

.value-panel h2 {
    margin: 0 0 10px;
    color: var(--ips-blue);
    font-weight: 800;
}

.value-panel p {
    margin: 0;
    color: var(--ips-muted);
}

.side-nav {
    position: sticky;
    top: 112px;
    padding: 18px;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    border-radius: 8px;
}

.side-nav h2 {
    margin: 0 0 12px;
    color: var(--ips-blue);
    font-size: 17px;
    font-weight: 800;
}

.side-nav a {
    display: block;
    padding: 11px 12px;
    color: var(--ips-muted);
    border-top: 1px solid var(--ips-border);
}

.side-nav a.active,
.side-nav a:hover {
    color: var(--ips-blue);
    background: #f3f5f8;
    border-left: 3px solid var(--ips-orange);
}

.contact-mini {
    margin-top: 18px;
    padding: 20px;
    color: var(--ips-white);
    background: var(--ips-blue);
    border-radius: 8px;
}

.contact-mini h3 {
    margin: 0 0 9px;
    font-size: 20px;
    font-weight: 800;
}

.contact-mini p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-mini .btn-primary-action {
    width: 100%;
}

.product-detail-card {
    padding: 28px;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    box-shadow: 0 20px 50px rgba(17, 31, 49, 0.08);
}

.product-detail-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
    gap: 28px;
    align-items: center;
}

.product-detail-intro h2 {
    margin: 10px 0 12px;
    color: var(--ips-blue);
    font-size: 32px;
    font-weight: 800;
}

.product-detail-intro p {
    color: var(--ips-muted);
}

.product-detail-intro img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    padding: 0;
    background: var(--ips-bg);
    border-radius: 8px;
}

.inch-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid var(--ips-border);
    border-top: 0;
}

.inch-note i {
    color: var(--ips-orange);
    font-size: 25px;
}

.inch-note p {
    margin: 0;
    color: var(--ips-muted);
}

.detail-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.detail-highlights div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    color: var(--ips-blue);
    background: var(--ips-bg);
    border-radius: 6px;
    font-weight: 700;
}

.detail-highlights i {
    color: var(--ips-orange);
    margin-top: 4px;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.service-sidebar,
.service-detail-main {
    min-width: 0;
}

.service-detail-main {
    display: grid;
    gap: 28px;
}

.service-intro-panel,
.service-copy-section,
.service-info-card,
.service-local-section,
.case-item,
.feedback-panel,
.faq-item,
.service-quote-panel {
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(17, 31, 49, 0.06);
}

.service-intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 30px;
    align-items: center;
    padding: 30px;
}

.service-intro-panel h2,
.service-copy-section h2,
.service-info-card h2,
.before-after-copy h2,
.feedback-panel h2,
.service-quote-panel h2 {
    margin: 10px 0 12px;
    color: var(--ips-blue);
    font-size: 30px;
    line-height: 1.18;
    font-weight: 800;
}

.service-intro-panel p,
.service-copy-section p,
.service-info-card p,
.before-after-copy p,
.case-item p,
.feedback-panel p,
.service-quote-panel p {
    margin: 0;
    color: var(--ips-muted);
}

.service-intro-panel figure {
    margin: 0;
}

.service-intro-panel img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 8px;
}

.service-intro-panel figcaption {
    margin-top: 9px;
    color: var(--ips-muted);
    font-size: 12px;
}

.service-copy-section {
    padding: 28px;
    border-left: 4px solid var(--ips-orange);
}

.service-copy-section p + p {
    margin-top: 14px;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.keyword-cloud--center {
    justify-content: center;
    width: min(940px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.keyword-cloud span {
    padding: 9px 12px;
    color: var(--ips-blue);
    background: #f8fafc;
    border: 1px solid var(--ips-border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
}

.service-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-local-section {
    padding: 28px;
    background: #f8fafc;
}

.local-area-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.local-area-item {
    min-width: 0;
    padding: 18px;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    border-radius: 8px;
}

.local-area-item h3 {
    margin: 0 0 7px;
    color: var(--ips-blue);
    font-size: 18px;
    font-weight: 800;
}

.local-area-item p {
    margin: 0;
    color: var(--ips-muted);
    font-size: 14px;
}

.service-info-card {
    padding: 24px;
}

.service-check-list {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-check-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--ips-ink);
    font-weight: 700;
    line-height: 1.35;
}

.service-check-list i {
    color: var(--ips-orange);
    margin-top: 3px;
}

.before-after-section {
    display: grid;
    gap: 22px;
}

.before-after-copy h2 {
    max-width: 780px;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.case-item {
    min-height: 180px;
    padding: 20px;
}

.case-item span {
    display: block;
    margin-bottom: 11px;
    color: var(--ips-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.case-item--before {
    border-top: 4px solid #b64b2c;
}

.case-item--after {
    border-top: 4px solid #20865a;
}

.case-item--result {
    border-top: 4px solid var(--ips-orange);
}

.before-after-section > img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(17, 31, 49, 0.08);
}

.feedback-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 24px;
    align-items: start;
    padding: 28px;
}

.feedback-list {
    display: grid;
    gap: 12px;
}

.feedback-list p {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--ips-ink);
    font-weight: 700;
}

.feedback-list i {
    color: var(--ips-orange);
    margin-top: 4px;
}

.service-process-strip,
.service-faq-section {
    display: grid;
    gap: 22px;
}

.service-process-strip .section-heading,
.service-faq-section .section-heading {
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list--wide {
    width: min(920px, 100%);
    margin: 0 auto;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    padding: 17px 20px;
    color: var(--ips-blue);
    cursor: pointer;
    font-weight: 800;
    line-height: 1.35;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    flex: 0 0 auto;
    color: var(--ips-orange);
    content: "+";
    font-size: 22px;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 20px 18px;
    margin: 0;
    color: var(--ips-muted);
}

.service-quote-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.service-quote-panel .btn-primary-action {
    flex: 0 0 auto;
}

.process-grid {
    margin-top: -24px;
}

.process-grid > [class*="col-"] {
    margin-top: 24px;
}

.process-card {
    height: 100%;
    overflow: hidden;
    background: var(--ips-white);
    border: 1px solid var(--ips-border);
    box-shadow: 0 16px 40px rgba(17, 31, 49, 0.06);
}

.process-card img {
    width: 100%;
    height: 168px;
    object-fit: cover;
}

.process-card div {
    padding: 18px;
}

.process-card h2 {
    margin: 0 0 8px;
    color: var(--ips-blue);
    font-size: 18px;
    font-weight: 800;
}

.process-card p {
    margin: 0;
    color: var(--ips-muted);
    font-size: 14px;
}

.bg-dark-panel {
    color: var(--ips-white);
    background: var(--ips-dark);
}

.dark-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
}

.contact-panel {
    height: 100%;
    padding: 30px;
    color: var(--ips-white);
    background: linear-gradient(145deg, var(--ips-blue), var(--ips-blue-soft));
}

.contact-panel h2 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 800;
}

.contact-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-line i {
    color: var(--ips-orange);
    margin-top: 5px;
}

.form-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 4px;
    font-weight: 700;
}

.form-alert.success {
    color: #0f5132;
    background: #d1e7dd;
}

.form-alert.error {
    color: #842029;
    background: #f8d7da;
}

.empty-state {
    width: min(700px, 100%);
    margin: 0 auto;
    padding: 46px;
    text-align: center;
    background: var(--ips-bg);
    border-radius: 8px;
}

.empty-state h1 {
    margin: 0 0 12px;
    color: var(--ips-blue);
    font-weight: 800;
}

.company-sections {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.company-sections section {
    padding: 22px;
    background: var(--ips-bg);
    border: 1px solid var(--ips-border);
    border-radius: 8px;
}

.company-sections h3 {
    margin: 0 0 8px;
    color: var(--ips-blue);
    font-size: 20px;
    font-weight: 800;
}

.company-sections p {
    margin: 0;
    color: var(--ips-muted);
}

.download-card {
    min-height: 240px;
}

.download-card > div {
    padding: 28px;
}

.download-card i {
    color: var(--ips-orange);
    font-size: 34px;
}

.career-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
    color: #cbd3df;
    background: #202225;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.8fr 0.95fr;
    gap: 46px;
    padding: 66px 0 44px;
}

.footer-brand img {
    width: 178px;
    height: 120px;
    object-fit: contain;
    filter: none;
}

.footer-brand p {
    margin: 14px 0 18px;
    color: #c0c8d3;
}

.footer-contact {
    display: grid;
    gap: 8px;
}

.footer-contact i {
    width: 18px;
    color: var(--ips-orange);
}

.site-footer h3 {
    position: relative;
    margin: 0 0 20px;
    color: var(--ips-white);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-footer h3::after {
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 9px;
    content: "";
    background: var(--ips-orange);
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    color: #c0c8d3;
}

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

.footer-hours {
    margin: 16px 0 0;
    color: #aeb8c6;
    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
    color: #aeb8c6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 16px;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 78px;
    z-index: 80;
    display: none;
    width: 42px;
    height: 42px;
    color: var(--ips-white);
    background: var(--ips-orange);
    border: 0;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.back-to-top.visible {
    display: inline-grid;
    place-items: center;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 80;
    display: inline-grid;
    width: 42px;
    height: 42px;
    color: var(--ips-white);
    background: #25d366;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    place-items: center;
    font-size: 22px;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
    color: var(--ips-white);
    background: #1fae55;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .top-strip__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 8px 0;
    }

    .nav-shell {
        min-height: 68px;
    }

    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
        background: var(--ips-white);
        border: 1px solid var(--ips-border);
        border-radius: 8px;
        box-shadow: 0 18px 44px rgba(17, 31, 49, 0.12);
    }

    .nav-list.open {
        display: flex;
    }

    .nav-list > li > a {
        padding: 13px 14px;
        border-radius: 4px;
    }

    .nav-list > li > a::after {
        display: none;
    }

    .nav-list > li > a.active {
        color: var(--ips-white);
        background: var(--ips-orange);
    }

    .dropdown-parent {
        justify-content: space-between;
    }

    .dropdown-parent i {
        transform: rotate(0);
    }

    .has-dropdown:hover .dropdown-parent i,
    .has-dropdown:focus-within .dropdown-parent i {
        transform: rotate(0);
    }

    .nav-dropdown {
        position: static;
        display: grid;
        min-width: 0;
        padding: 4px 0 4px 12px;
        margin: 0;
        background: transparent;
        border: 0;
        border-left: 2px solid var(--ips-border);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .nav-dropdown a {
        padding: 9px 12px;
        white-space: normal;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 44px;
    }

    .about-showcase__grid {
        grid-template-columns: 1fr;
    }

    .product-hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-hero-image {
        min-height: 230px;
    }

    .about-showcase__copy p {
        max-width: 100%;
    }

    .feature-grid,
    .advantage-grid,
    .certification-grid,
    .area-grid,
    .strength-grid,
    .quality-grid,
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-block {
        padding-left: 0;
    }

    .side-nav {
        position: static;
        margin-bottom: 22px;
    }

    .service-detail-layout,
    .service-intro-panel,
    .feedback-panel,
    .location-copy-panel,
    .local-area-list {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        order: 2;
    }

    .service-detail-main {
        order: 1;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .top-strip__left,
    .top-strip__right {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .brand img {
        width: 100px;
        height: 66px;
    }

    .brand strong {
        font-size: 18px;
    }

    .hero-section {
        min-height: 580px;
    }

    .image-slider,
    .banner-slides,
    .banner-slide {
        height: 430px;
    }

    .hero-overlay {
        background: rgba(11, 37, 69, 0.84);
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .hero-content p,
    .page-hero p {
        font-size: 17px;
    }

    .product-hero-layout {
        padding: 44px 0;
    }

    .product-hero-image {
        min-height: 190px;
        padding: 18px;
    }

    .product-hero-image img {
        max-height: 185px;
    }

    .hero-actions,
    .hero-stats,
    .capability-list,
    .dark-check-grid,
    .detail-highlights,
    .product-detail-intro,
    .service-content-grid,
    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats,
    .feature-grid,
    .advantage-grid,
    .certification-grid,
    .area-grid,
    .strength-grid,
    .quality-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .feature-item {
        grid-template-columns: 46px 1fr;
    }

    .feature-item i {
        width: 46px;
        height: 46px;
    }

    .section-padding,
    .quote-band,
    .advantage-section {
        padding: 58px 0;
    }

    .section-heading h2,
    .certification-heading h2,
    .about-showcase__copy h2,
    .content-block h2,
    .product-detail-intro h2 {
        font-size: 29px;
    }

    .about-showcase__media {
        grid-template-columns: 1fr;
    }

    .about-showcase__media img {
        height: 230px;
    }

    .product-detail-card,
    .service-intro-panel,
    .service-copy-section,
    .service-info-card,
    .service-local-section,
    .feedback-panel,
    .service-quote-panel {
        padding: 18px;
    }

    .service-intro-panel img,
    .before-after-section > img {
        height: 230px;
    }

    .service-quote-panel {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .back-to-top {
        right: 14px;
        bottom: 74px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 18px;
    }
}
