/* =====================================================================
   Commercial Template (page-commercial-template.php)
   Scoped under .ct-commercial so it cannot bleed into other pages.
   ===================================================================== */

.ct-commercial {
    color: #111c24;
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    scroll-behavior: smooth;
}

.ct-commercial *,
.ct-commercial *::before,
.ct-commercial *::after {
    box-sizing: border-box;
}

.ct-commercial [id] {
    scroll-margin-top: 96px;
}

.ct-container {
    max-width: 1336px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ------------------------------------------------- */
.ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.35px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.ct-btn--primary {
    background: #da291c;
    color: #ffffff;
    border: 2px solid #da291c;
}

.ct-btn--primary:hover,
.ct-btn--primary:focus {
    background: #b8221a;
    border-color: #b8221a;
    color: #ffffff;
}

.ct-btn--outline {
    background: transparent;
    color: #111c24;
    border: 2px solid #111c24;
}

.ct-btn--outline:hover,
.ct-btn--outline:focus {
    background: #111c24;
    color: #ffffff;
}

.ct-btn--ghost {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.ct-btn--ghost:hover,
.ct-btn--ghost:focus {
    background: #ffffff;
    color: #111c24;
}

/* ---------- Hero ---------------------------------------------------- */
.ct-hero {
    background: #ffffff;
    padding: 128px 0 0;
}

.ct-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 540px;
    gap: 80px;
    align-items: start;
}

.ct-hero__content {
    max-width: 686px;
}

.ct-hero__eyebrow {
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.7px;
    color: #da291c;
    text-transform: uppercase;
}

.ct-hero__title {
    margin: 0 0 24px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 3px;
    color: #111c24;
    text-transform: uppercase;
}

.ct-hero__lead {
    margin: 0 0 40px;
    max-width: 576px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    color: #656971;
}

.ct-hero__list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 12px;
}

.ct-hero__list li {
    position: relative;
    padding-left: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #111c24;
}

.ct-hero__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #da291c;
}

.ct-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ct-hero__cta .ct-btn--primary {
    width: 100%;
}

.ct-hero__cta .ct-btn--outline {
    min-width: 230px;
}

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

.ct-hero__nav-btn {
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 8px 16px;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 0.3px;
    text-align: center;
    white-space: normal;
}

.ct-hero__media {
    position: relative;
    width: 540px;
    height: 420px;
    overflow: hidden;
}

.ct-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ---------- ValueIntro --------------------------------------------- */
.ct-value-intro {
    background: #ffffff;
    padding: 112px 0;
}

.ct-value-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 573.5px) minmax(0, 573.5px);
    gap: 64px;
    align-items: start;
}

.ct-value-intro__media {
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    height: 500px;
    margin-top: 16px;
}

.ct-value-intro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ct-value-intro__title {
    margin: 0 0 24px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 1.8px;
    color: #111c24;
    text-transform: uppercase;
}

.ct-value-intro__copy p {
    margin: 0 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #656971;
}

.ct-value-intro__copy p:last-child {
    margin-bottom: 32px;
}

.ct-value-intro__callouts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-value-intro__callouts li {
    position: relative;
    padding-left: 20px;
}

.ct-value-intro__callouts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #da291c;
}

.ct-value-intro__callouts h4 {
    margin: 0 0 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 0.8px;
    color: #111c24;
    text-transform: uppercase;
}

.ct-value-intro__callouts p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #656971;
}

.ct-value-intro__cta {
    margin-top: 32px;
}

.ct-value-intro__cta .ct-btn {
    min-width: 240px;
}

/* ---------- ApplicationsGrid --------------------------------------- */
.ct-applications {
    background: #f1f3f4;
    padding: 112px 0;
}

.ct-applications__header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px;
}

.ct-applications__title {
    margin: 0 0 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 1.8px;
    color: #111c24;
    text-transform: uppercase;
}

.ct-applications__lead {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #656971;
}

.ct-applications__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

/* Desktop: Figma "2 / 3 / 2" centered layout. Placed explicitly on a 6-col
   track and keyed to exactly 7 cards (rows 1 & 3 centered, row 2 full width).
   Below 1025px the breakpoints reset this to a normal flowing grid. */
@media (min-width: 1025px) {
    .ct-applications__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .ct-applications__grid > .ct-app-card { grid-column: span 2; }
    .ct-applications__grid > .ct-app-card:nth-child(1) { grid-column: 2 / span 2; grid-row: 1; }
    .ct-applications__grid > .ct-app-card:nth-child(2) { grid-column: 4 / span 2; grid-row: 1; }
    .ct-applications__grid > .ct-app-card:nth-child(3) { grid-column: 1 / span 2; grid-row: 2; }
    .ct-applications__grid > .ct-app-card:nth-child(4) { grid-column: 3 / span 2; grid-row: 2; }
    .ct-applications__grid > .ct-app-card:nth-child(5) { grid-column: 5 / span 2; grid-row: 2; }
    .ct-applications__grid > .ct-app-card:nth-child(6) { grid-column: 2 / span 2; grid-row: 3; }
    .ct-applications__grid > .ct-app-card:nth-child(7) { grid-column: 4 / span 2; grid-row: 3; }
}

.ct-app-card {
    background: #ffffff;
    border: 1px solid rgba(180, 186, 188, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: inherit;
    text-decoration: none;
}

.ct-app-card:hover,
.ct-app-card:focus,
.ct-app-card:focus-visible {
    color: inherit;
    text-decoration: none;
}

.ct-app-card:focus-visible {
    outline: 2px solid #da291c;
    outline-offset: 2px;
}

.ct-app-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0.15em 0.65em rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.ct-app-card__media {
    background: #f1f3f4;
    height: 192px;
    overflow: hidden;
    border-radius: 5px;
}

.ct-app-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.ct-app-card:hover .ct-app-card__media img {
    transform: scale(1.03);
}

.ct-app-card__body {
    padding: 24px;
}

.ct-app-card__title {
    margin: 0 0 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #111c24;
    text-transform: uppercase;
}

.ct-app-card__desc {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    color: #656971;
}

/* ---------- ProductsSolutions -------------------------------------- */
.ct-products {
    background: #ffffff;
    padding: 112px 0;
}

.ct-products__header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px;
}

.ct-products__title {
    margin: 0 0 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 1.8px;
    color: #111c24;
    text-transform: uppercase;
}

.ct-products__lead {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #656971;
}

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

.ct-prod-card {
    background: #ffffff;
    border: 1px solid rgba(180, 186, 188, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ct-prod-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0.15em 0.65em rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.ct-prod-card__media {
    background: #f1f3f4;
    height: 192px;
    overflow: hidden;
    border-radius: 5px;
}

.ct-prod-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.ct-prod-card:hover .ct-prod-card__media img {
    transform: scale(1.03);
}

.ct-prod-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ct-prod-card__title {
    margin: 0 0 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #111c24;
    text-transform: uppercase;
}

.ct-prod-card__desc {
    margin: 0 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    color: #656971;
}

.ct-prod-card__cta {
    margin-top: auto;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.35px;
    color: #da291c;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ct-prod-card__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ct-prod-card__cta > * {
    position: relative;
    z-index: 2;
}

.ct-prod-card:focus-within {
    outline: 2px solid #da291c;
    outline-offset: 2px;
}

.ct-prod-card__cta:hover,
.ct-prod-card__cta:focus {
    color: #b8221a;
}

.ct-prod-card__cta span {
    display: inline-block;
    transition: transform 0.2s ease;
    margin-left: 4px;
}

.ct-prod-card__cta:hover span,
.ct-prod-card__cta:focus span {
    transform: translateX(4px);
}

/* ---------- DesignTool --------------------------------------------- */
.ct-design-tool {
    background: #111c24;
    color: #ffffff;
    padding: 90px 0 96px;
}

.ct-design-tool__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 64px;
}

.ct-design-tool__title {
    margin: 0 0 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 1.8px;
    color: #ffffff;
    text-transform: uppercase;
}

.ct-design-tool__subtitle {
    margin: 0 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
}

.ct-design-tool__lead {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #b4babc;
}

.ct-design-tool__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px;
    margin-bottom: 64px;
}

.ct-step {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-step__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ct-step__num {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #da291c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

.ct-step__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
}

.ct-step__caption {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #b4babc;
}

.ct-step__preview {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    height: 318px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.ct-step__preview img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: top center;
    display: block;
}

.ct-step__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-step__list li {
    position: relative;
    padding-left: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #b4babc;
}

.ct-step__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #da291c;
}

.ct-design-tool__quote {
    background: rgba(218, 41, 28, 0.1);
    border: 0;
    border-left: 4px solid #da291c;
    padding: 24px 28px;
    margin: 0 auto 48px;
    max-width: 800px;
    box-sizing: border-box;
}

.ct-design-tool__quote p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    text-align: center;
}

.ct-design-tool__cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ct-design-tool__cta .ct-btn--primary {
    min-width: 216px;
}

.ct-design-tool__cta .ct-btn--ghost {
    min-width: 227px;
}

/* ---------- WarrantySupport ---------------------------------------- */
.ct-warranty {
    background: #f1f3f4;
    padding: 112px 0;
}

.ct-warranty__inner {
    display: grid;
    grid-template-columns: minmax(0, 581px) minmax(0, 567px);
    gap: 64px;
    align-items: center;
}

.ct-warranty__title {
    margin: 0 0 24px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 1.8px;
    color: #111c24;
    text-transform: uppercase;
}

.ct-warranty__lead {
    margin: 0 0 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #656971;
    max-width: 582px;
}

.ct-warranty__checks {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-warranty__checks li {
    position: relative;
    padding-left: 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #111c24;
    min-height: 24px;
}

.ct-warranty__checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #da291c;
}

.ct-warranty__checks li::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 7px;
    height: 12px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
}

.ct-warranty__cta {
    width: 100%;
    max-width: 515px;
    height: 44px;
    padding: 0;
}

.ct-warranty__media {
    width: 100%;
    height: 426px;
    overflow: hidden;
}

.ct-warranty__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- RelatedMaterials --------------------------------------- */
.ct-related {
    background: #ffffff;
    padding: 112px 0;
}

.ct-related__header {
    text-align: center;
    margin: 0 0 36px;
}

.ct-related__title {
    margin: 0 0 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 1.8px;
    color: #111c24;
    text-transform: uppercase;
}

.ct-related__lead {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #656971;
}

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

.ct-related-card {
    background: #ffffff;
    border: 1px solid rgba(180, 186, 188, 0.3);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ct-related-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0.15em 0.65em rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.ct-related-card__tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background: #f1f3f4;
    color: #da291c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 16px;
}

.ct-related-card__title {
    margin: 0 0 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #111c24;
    text-transform: uppercase;
}

.ct-related-card__desc {
    margin: 0 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    color: #656971;
}

.ct-related-card__cta {
    margin-top: auto;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.35px;
    color: #da291c;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.ct-related-card__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ct-related-card__cta > * {
    position: relative;
    z-index: 2;
}

.ct-related-card:focus-within {
    outline: 2px solid #da291c;
    outline-offset: 2px;
}

.ct-related-card__cta:hover,
.ct-related-card__cta:focus {
    color: #b8221a;
}

.ct-related-card__cta span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.ct-related-card__cta:hover span,
.ct-related-card__cta:focus span {
    transform: translateX(4px);
}

/* ---------- ContactCTA --------------------------------------------- */
.ct-contact-cta {
    background: #111c24;
    color: #ffffff;
    padding: 96px 0;
}

.ct-contact-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: center;
}

.ct-contact-cta__title {
    margin: 0 0 24px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 1.8px;
    color: #ffffff;
    text-transform: uppercase;
}

.ct-contact-cta__lead {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    color: #b4babc;
    max-width: 582px;
}

.ct-contact-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.ct-contact-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ct-contact-cta__buttons .ct-btn--primary {
    min-width: 256px;
    height: 52px;
}

.ct-contact-cta__buttons .ct-btn--ghost {
    min-width: 213px;
    height: 56px;
}

.ct-contact-cta__phone {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
}

.ct-contact-cta__phone-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #b4babc;
}

.ct-contact-cta__phone-number {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    text-decoration: none;
}

.ct-contact-cta__phone-number:hover,
.ct-contact-cta__phone-number:focus {
    color: #da291c;
}

/* ---------- Responsive --------------------------------------------- */
@media (max-width: 1024px) {
    .ct-hero {
        padding: 80px 0 0;
    }

    .ct-applications {
        padding: 80px 0;
    }

    .ct-products {
        padding: 80px 0;
    }

    .ct-design-tool {
        padding: 72px 0 80px;
    }

    .ct-warranty {
        padding: 80px 0;
    }

    .ct-related {
        padding: 80px 0;
    }

    .ct-contact-cta {
        padding: 72px 0;
    }

    .ct-contact-cta__inner {
        grid-template-columns: 1fr;
    }

    .ct-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .ct-warranty__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-warranty__media {
        height: 320px;
        order: -1;
    }

    .ct-design-tool__header {
        margin-bottom: 40px;
    }

    .ct-design-tool__steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-step__preview {
        height: 280px;
    }

    .ct-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .ct-applications__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .ct-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ct-hero__media {
        width: 100%;
        height: 360px;
        order: -1;
    }

    .ct-hero__nav {
        max-width: none;
    }

    .ct-value-intro {
        padding: 80px 0;
    }

    .ct-value-intro__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-value-intro__media {
        height: 360px;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .ct-hero {
        padding: 56px 0 0;
    }

    .ct-hero__nav {
        grid-template-columns: 1fr;
    }

    .ct-hero__nav-btn {
        width: 100%;
    }

    .ct-value-intro {
        padding: 56px 0;
    }

    .ct-applications {
        padding: 56px 0;
    }

    .ct-applications__header {
        margin-bottom: 40px;
    }

    .ct-applications__title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: 1.4px;
    }

    .ct-applications__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ct-products {
        padding: 56px 0;
    }

    .ct-products__header {
        margin-bottom: 40px;
    }

    .ct-products__title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: 1.4px;
    }

    .ct-products__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ct-design-tool {
        padding: 56px 0 64px;
    }

    .ct-design-tool__title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: 1.4px;
    }

    .ct-design-tool__subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .ct-design-tool__quote p {
        font-size: 16px;
        line-height: 24px;
    }

    .ct-design-tool__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .ct-design-tool__cta .ct-btn {
        min-width: 0;
    }

    .ct-step__preview {
        height: 220px;
    }

    .ct-warranty {
        padding: 56px 0;
    }

    .ct-warranty__title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: 1.4px;
    }

    .ct-warranty__cta {
        max-width: none;
    }

    .ct-warranty__media {
        height: 220px;
    }

    .ct-related {
        padding: 56px 0;
    }

    .ct-related__title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: 1.4px;
    }

    .ct-related__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ct-contact-cta {
        padding: 56px 0;
    }

    .ct-contact-cta__title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: 1.4px;
    }

    .ct-contact-cta__buttons .ct-btn--primary,
    .ct-contact-cta__buttons .ct-btn--ghost {
        min-width: 0;
        width: 100%;
    }

    .ct-value-intro__title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: 1.4px;
    }

    .ct-value-intro__media {
        height: 260px;
    }


    .ct-hero__title {
        font-size: 42px;
        line-height: 46px;
        letter-spacing: 2px;
    }

    .ct-hero__lead {
        font-size: 16px;
        line-height: 26px;
    }

    .ct-hero__list {
        grid-template-columns: 1fr;
    }

    .ct-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .ct-hero__cta .ct-btn {
        min-width: 0;
        width: 100%;
    }

    .ct-hero__media {
        height: 260px;
    }
}

/* =====================================================================
   Theme override — main.css has `section:not(.home-hero) { padding-bottom: 100px }`
   which has higher specificity than our single-class section rules.
   These specificity-bumped rules restore the intended paddings.
   ===================================================================== */
.ct-commercial .ct-hero         { padding-bottom: 0; }
.ct-commercial .ct-value-intro  { padding-bottom: 112px; }
.ct-commercial .ct-applications { padding-bottom: 112px; }
.ct-commercial .ct-products     { padding-bottom: 112px; }
.ct-commercial .ct-design-tool  { padding-bottom: 96px; }
.ct-commercial .ct-warranty     { padding-bottom: 112px; }
.ct-commercial .ct-related      { padding-bottom: 112px; }
.ct-commercial .ct-contact-cta  { padding-bottom: 96px; }

@media (max-width: 1024px) {
    .ct-commercial .ct-hero         { padding-bottom: 0; }
    .ct-commercial .ct-value-intro  { padding-bottom: 80px; }
    .ct-commercial .ct-applications { padding-bottom: 80px; }
    .ct-commercial .ct-products     { padding-bottom: 80px; }
    .ct-commercial .ct-design-tool  { padding-bottom: 80px; }
    .ct-commercial .ct-warranty     { padding-bottom: 80px; }
    .ct-commercial .ct-related      { padding-bottom: 80px; }
    .ct-commercial .ct-contact-cta  { padding-bottom: 72px; }
}

@media (max-width: 640px) {
    .ct-commercial .ct-hero         { padding-bottom: 0; }
    .ct-commercial .ct-value-intro  { padding-bottom: 56px; }
    .ct-commercial .ct-applications { padding-bottom: 56px; }
    .ct-commercial .ct-products     { padding-bottom: 56px; }
    .ct-commercial .ct-design-tool  { padding-bottom: 64px; }
    .ct-commercial .ct-warranty     { padding-bottom: 56px; }
    .ct-commercial .ct-related      { padding-bottom: 56px; }
    .ct-commercial .ct-contact-cta  { padding-bottom: 56px; }
}
