.fusion-page-title-bar {
    display: none !important;
}

#main {
    padding: 0 !important;
}

#main .fusion-row {
    max-width: 100% !important;
}

.home-template {
    --primary: #264795;
    --primary-dark: #1b336e;
    --white: #ffffff;
    --text: #10213d;
    --muted: #5f6f89;
    --light: #f4f6fa;
    --border: #dfe4ef;
    font-family: Inter, sans-serif;
    color: var(--text);
    background: var(--white);
}

.home-template * {
    box-sizing: border-box;
}

.home-template .custom-container {
    width: 85%;
    max-width: 85%;
    margin: 0 auto;
    padding: 0;
}

.home-template .section-space {
    padding: 88px 0;
}

.home-template .section-muted {
    background: var(--light);
}

.home-template h1,
.home-template h2,
.home-template h3 {
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-template h1 {
    color: var(--white);
    font-size: 56px;
}

.home-template h2 {
    font-size: 38px;
}

.home-template h3 {
    font-size: 22px;
}

.home-template p {
    color: var(--muted);
    margin: 14px 0 14px;
}

.home-template .skip-link {
    position: absolute;
    left: -9999px;
}

.home-template .skip-link:focus {
    left: 20px;
    top: 20px;
    z-index: 9999;
    background: var(--primary);
    color: var(--white);
    padding: 10px 14px;
}

.hero-section {
    background: linear-gradient(140deg, #102d66 0%, #264795 65%, #2f5db4 100%);
    padding-top: 64px;
    padding-bottom: 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(640px, 1.15fr);
    gap: 42px;
    align-items: center;
}

.hero-content {
    max-width: 820px;
}

.hero-content p,
.hero-content li {
    color: rgba(255, 255, 255, 0.9);
}

.check-list {
    list-style: none;
    margin: 18px 0 24px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
}

.check-list li::before {
    content: "✓ ";
    color: #82d7a4;
    font-weight: 700;
}

.capabilities-include-section {
    background: linear-gradient(180deg, #0f2e67 0%, #1c4287 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.capabilities-include-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 34%);
    pointer-events: none;
}

.capabilities-include-section h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 42px;
    line-height: 1.1;
}

.capabilities-include-shell {
    display: grid;
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.capabilities-include-header {
    max-width: 430px;
}

.capabilities-include-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
}

.capabilities-include-header p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 12px;
}

.capabilities-include-header p:last-child {
    margin-bottom: 0;
    color: #fef3d1;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.capabilities-include-list {
    margin: 0;
    padding: 26px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(7, 23, 56, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    gap: 12px 26px;
}

.capabilities-include-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.capabilities-cta-strip {
    background: #f4f7fc;
    margin-top: -10px;
    position: relative;
    z-index: 2;
}

.capabilities-cta-strip-inner {
    background: linear-gradient(135deg, #102d66 0%, #264795 100%);
    color: #fff;
    border-radius: 20px;
    padding: 30px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 18px 34px rgba(20, 39, 78, 0.14);
}

.capabilities-cta-strip-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.capabilities-cta-strip-inner .btn {
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(12, 32, 74, 0.16);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    text-decoration: none !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 700;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.btn:hover,
.btn:focus,
.btn:active {
    text-decoration: none !important;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #eef3ff;
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(10, 25, 55, 0.35);
    width: 100%;
}

.hero-image-wrap img {
    width: 100%;
    display: block;
    min-height: 520px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1));
}

.hero-badges {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-badges span {
    background: rgba(17, 28, 46, 0.85);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.trust-strip {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(15, 47, 108, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 24px rgba(8, 20, 49, 0.28);
}

.trust-strip-inner {
    min-height: 84px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-logos img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.trust-strip-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: right;
}

.about-grid,
.quality-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-overview-section {
    background: #f2f4f8;
}

.about-copy {
    padding: 10px 6px 10px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-visual {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-eyebrow {
    font-size: 12px;
    letter-spacing: 0.09em;
    font-weight: 700;
    color: #f9ab10 !important;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-copy h2 {
    margin-bottom: 14px;
    max-width: 600px;
}

.about-overview-section p {
    font-size: 16px;
    line-height: 1.75;
    color: #4b5c78;
    margin-bottom: 16px;
}

.quality-media img,
.contact-grid img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.about-slider {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d4dceb;
    background: #fff;
    flex: 1 1 auto;
}

.about-slider-track {
    position: relative;
    height: 100%;
    min-height: 0;
}

.about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.about-slide.is-active {
    opacity: 1;
}

.about-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.about-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
}

.about-slider-dot.is-active {
    background: #fff;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
    width: 100%;
    flex-shrink: 0;
}

.stats-cards article {
    background: #fff;
    border: 1px solid #d7deec;
    border-radius: 12px;
    color: #112444;
    padding: 14px 12px;
    text-align: center;
}

.stat-icon {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: #f9ab10 !important;
    margin: 0 auto 10px;
}

.stats-cards .stat-icon svg {
    stroke: #f9ab10 !important;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stats-cards strong {
    display: block;
    font-size: 32px;
    line-height: 1.05;
}

.stats-cards span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #5d6f8c;
    font-weight: 500;
}

.capability-grid,
.credibility-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.capabilities-section h2 {
    margin-bottom: 24px;
    text-align: center;
    font-size: 44px;
}

.capabilities-eyebrow {
    margin: 0 0 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #f9ab10 !important;
}

.info-card,
.credibility-cards article {
    background: var(--white);
    border: 1px solid #dde3ef;
    border-radius: 10px;
    padding: 18px 18px 14px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cap-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f6fb;
    color: #1f3d76;
    margin-bottom: 12px;
}

.cap-icon svg {
    width: 35px;
    height: 35px;
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 21px;
}

.info-card p {
    margin: 0;
    color: #5f6f89;
    line-height: 1.6;
    font-size: 14px;
}

.info-card:hover,
.credibility-cards article:hover,
.product-card:hover,
.industry-grid article:hover,
.news-slider article:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(20, 39, 78, 0.12);
}

.process-video {
    width: 90%;
    max-width: 768px;
    margin: 24px auto;
    padding: 0;
}

.process-video video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    background: #000;
}

.quality-section {
    background: #f3f5f9;
}

.quality-grid {
    grid-template-columns: minmax(320px, 420px) minmax(420px, 560px);
    justify-content: center;
    align-items: center;
    column-gap: 80px;
}

.quality-media {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.quality-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.quality-copy {
    align-self: center;
    padding-left: 0;
    padding-top: 0;
    max-width: 520px;
}

.quality-eyebrow {
    margin: 0 0 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #f9ab10 !important;
    text-transform: uppercase;
}

.quality-copy h2 {
    margin-bottom: 14px;
    font-size: 26px;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 1.2;
}

.quality-copy > p {
    margin-bottom: 18px;
    color: #566985;
    font-size: 14px;
    line-height: 1.7;
}

.quality-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.quality-points li {
    position: relative;
    padding-left: 26px;
    color: #1f2f4a;
    line-height: 1.55;
    font-size: 12px;
    font-weight: 400;
}

.quality-points li::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.6px solid #f9ab10;
    background: #fff;
}

.quality-points li::after {
    content: "✓";
    position: absolute;
    top: 2px;
    left: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #f9ab10;
    z-index: 1;
}

.process-video-content {
    text-align: center;
    width: 90%;
    max-width: 900px;
    margin: 40px auto 40px;
    padding: 0;
}

.process-video-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.process-video-copy {
    font-size: 16px;
    color: #566985;
    line-height: 1.6;
    margin-bottom: 0;
}

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 28px;
}

.section-eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #f9ab10;
    text-transform: uppercase;
}

.text-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

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

.product-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(20, 39, 78, 0.05);
}

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

.product-card h3,
.product-card p,
.product-card a {
    padding-left: 16px;
    padding-right: 16px;
}

.product-card h3 {
    font-size: 24px;
    line-height: 1.25;
    margin-top: 14px;
    margin-bottom: 10px;
}

.product-card p {
    min-height: 52px;
    margin-bottom: 14px;
    color: #6a7890;
    font-size: 14px;
    line-height: 1.6;
}

.product-card a {
    display: inline-block;
    margin-bottom: 16px;
    color: #f9ab10;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.industries-section {
    text-align: center;
}

.industries-section h2 {
    margin-bottom: 12px;
}

.industries-section > .custom-container > p {
    max-width: 620px;
    margin: 0 auto 28px;
    font-size: 14px;
    line-height: 1.6;
    color: #6c7a90;
}

.industry-grid {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.industry-grid article {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 152px;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 26px rgba(20, 39, 78, 0.08);
}

.industry-grid img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.industry-grid article div {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 24, 43, 0.62), rgba(15, 24, 43, 0.02) 52%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 14px;
}

.industry-grid h3,
.industry-grid span {
    color: var(--white);
    margin: 0;
}

.industry-grid h3 {
    font-size: 17px;
    line-height: 1.25;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.industry-grid article:hover img {
    transform: scale(1.06);
}

.sustainability-section {
    text-align: center;
}

.sustainability-eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #f9ab10;
    text-transform: uppercase;
}

.sustainability-section h2 {
    max-width: 760px;
    margin: 0 auto 18px;
    font-size: 32px;
}

.sustainability-section > .custom-container > p:not(.compliance-line):not(.sustainability-eyebrow) {
    max-width: 820px;
    margin: 0 auto 34px;
    color: #667892;
    font-size: 15px;
    line-height: 1.8;
}

.credibility-cards {
    max-width: 75%;
    margin: 0 auto;
    gap: 16px;
}

.credibility-cards article {
    text-align: left;
    border-radius: 12px;
    border: 1px solid #dbe4f1;
    padding: 18px 16px 16px;
    box-shadow: none;
}

.credibility-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f9ab10;
    margin-bottom: 12px;
}

.credibility-icon svg {
    width: 32px;
    height: 32px;
}

.credibility-cards article h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.35;
    color: #10213d;
}

.credibility-cards article p {
    margin: 0;
    color: #6b7c95;
    font-size: 12px;
    line-height: 1.7;
}

.compliance-line {
    margin-top: 22px;
    color: #10213d;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.compliance-icon {
    width: 18px;
    height: 18px;
    color: #f9ab10;
    display: inline-flex;
}

.compliance-icon svg {
    width: 100%;
    height: 100%;
}

.mission-tabs-section {
    background: #ffffff;
}

.mission-tabs-shell {
    max-width: 960px;
    margin: 0 auto 28px;
}

.mission-tabs-shell input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mission-tabs-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #f3f6fb;
    border: 1px solid #dfe5ef;
    margin-bottom: 24px;
}

.mission-tabs-nav label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    color: #4f607c;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mission-tabs-panels {
    position: relative;
}

.mission-tab-panel {
    display: none;
    border: 1px solid #dfe5ef;
    border-radius: 22px;
    padding: 28px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow: 0 14px 30px rgba(20, 39, 78, 0.05);
}

.mission-tab-panel p {
    margin: 0;
    color: #5d6e88;
    font-size: 16px;
    line-height: 1.9;
}

#mission-tab:checked ~ .mission-tabs-nav label[for="mission-tab"],
#values-tab:checked ~ .mission-tabs-nav label[for="values-tab"],
#history-tab:checked ~ .mission-tabs-nav label[for="history-tab"] {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(38, 71, 149, 0.22);
}

#mission-tab:checked ~ .mission-tabs-panels #mission-panel,
#values-tab:checked ~ .mission-tabs-panels #values-panel,
#history-tab:checked ~ .mission-tabs-panels #history-panel {
    display: block;
}

.mission-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-support-grid article {
    background: #ffffff;
    border: 1px solid #dfe5ef;
    border-radius: 18px;
    padding: 22px 22px 20px;
    box-shadow: 0 12px 28px rgba(20, 39, 78, 0.05);
}

.mission-support-grid h3 {
    margin: 0 0 14px;
    color: #10213d;
    font-size: 20px;
    line-height: 1.35;
}

.mission-support-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mission-support-grid li {
    position: relative;
    padding-left: 24px;
    color: #5d6e88;
    font-size: 14px;
    line-height: 1.6;
}

.mission-support-grid li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f9ab10;
    box-shadow: 0 0 0 4px rgba(249, 171, 16, 0.15);
}

.founder-message {
    background: #f6f8fc;
}

.founder-message blockquote {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 18px 0;
}

.founder-message blockquote::before {
    content: "“";
    font-size: 150px;
    line-height: 0.2;
    color: #f3bf4c;
    display: block;
    margin-bottom: 18px;
}

.founder-message blockquote p {
    max-width: 620px;
    margin: 0 auto;
    color: #10213d;
    font-size: 18px;
    line-height: 1.75;
    font-style: italic;
    font-weight: 500;
}

.founder-message cite {
    display: block;
    margin-top: 22px;
    color: #10213d;
    font-style: normal;
    font-weight: 600;
    position: relative;
    padding-top: 20px;
    line-height: 1.6;
    font-size: 18px;
}

.founder-message cite::before {
    content: "";
    width: 92px;
    height: 1px;
    background: #d8deea;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.founder-message cite br {
    display: block;
    content: "";
    margin-bottom: 4px;
}

.news-events-section .section-header-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.section-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-events-section .text-link {
    display: none;
}

.news-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
}

.news-slider article {
    scroll-snap-align: start;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 26px rgba(20, 39, 78, 0.06);
}

.news-slider img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card-body {
    padding: 14px 14px 16px;
    text-align: left;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border-radius: 999px;
    background: #fff6e5;
    color: #f9ab10;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-slider h3 {
    font-size: 18px;
    line-height: 1.45;
    margin: 0 0 10px;
}

.news-slider a {
    display: inline-block;
    color: #f9ab10;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}

.contact-section {
    background: #eef3ff;
}

.form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}

.form-trust {
    margin-top: 8px;
    margin-bottom: 0;
    color: var(--primary);
    font-weight: 600;
}

.mobile-float-rfq {
    display: none;
    position: fixed;
    right: 14px;
    bottom: 16px;
    z-index: 999;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 12px 16px;
    box-shadow: 0 10px 28px rgba(7, 23, 56, 0.4);
}

.sticky-cta-btn {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
}

.home-sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

@media (max-width: 1100px) {
    .hero-grid,
    .about-grid,
    .capabilities-include-shell,
    .quality-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .home-template {
        overflow-x: hidden;
    }

    .hero-grid > *,
    .about-grid > *,
    .quality-grid > *,
    .contact-grid > * {
        min-width: 0;
    }

    .home-template .custom-container {
        width: calc(100% - 24px);
        max-width: 100%;
        padding: 0;
    }

    .home-template .section-space {
        padding: 40px 0;
    }

    .hero-section {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero-content {
        max-width: 100%;
    }

    .home-template h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .home-template h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    .home-template h3 {
        font-size: 18px;
    }

    .home-template p {
        margin: 10px 0;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta .btn {
        width: 100%;
        min-height: 44px;
        padding: 11px 14px;
        font-size: 14px;
        line-height: 1.35;
        white-space: normal;
        text-align: center;
    }

    .btn {
        min-width: 0;
    }

    .hero-image-wrap img {
        min-height: 220px;
    }

    .capabilities-include-section h2 {
        font-size: 24px;
    }

    .capabilities-include-shell {
        gap: 24px;
    }

    .capabilities-include-list {
        padding: 18px;
    }

    .capabilities-cta-strip {
        padding: 14px 0 0;
    }

    .capabilities-cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .capabilities-cta-strip-inner p {
        font-size: 18px;
    }

    .capabilities-cta-strip-inner .btn {
        width: 100%;
        white-space: normal;
    }

    .capabilities-include-list li {
        font-size: 15px;
    }

    .about-overview-section p {
        font-size: 14px;
    }

    .about-slider-track {
        min-height: 190px;
    }

    .stats-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .stats-cards article {
        padding: 12px;
    }

    .info-card h3 {
        font-size: 17px;
    }

    .capabilities-section h2 {
        font-size: 24px;
    }

    .process-video-heading,
    .quality-copy h2,
    .sustainability-section h2,
    .mission-support-grid h3,
    .founder-message blockquote p,
    .news-events-section h2,
    .industries-section h2 {
        font-size: 24px;
    }

    .quality-copy > p,
    .process-video-copy,
    .sustainability-section > .custom-container > p:not(.compliance-line):not(.sustainability-eyebrow),
    .mission-tab-panel p,
    .industries-section > .custom-container > p {
        font-size: 14px;
        line-height: 1.6;
    }

    .mission-tabs-shell {
        margin-bottom: 20px;
    }

    .mission-tabs-nav {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        border-radius: 18px;
        gap: 8px;
        padding: 10px;
    }

    .mission-tabs-nav label {
        width: 100%;
        padding: 12px 16px;
    }

    .mission-tab-panel {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .mission-support-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mission-support-grid article {
        padding: 18px 16px;
    }

    .mission-support-grid h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        position: relative;
    }

    .trust-strip-inner {
        justify-content: center;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .trust-strip-inner p {
        font-size: 13px;
    }

    .capability-grid,
    .credibility-cards,
    .products-grid,
    .industry-grid,
    .news-slider {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .capability-grid > *,
    .credibility-cards > *,
    .products-grid > *,
    .industry-grid > *,
    .news-slider > * {
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: start;
    }

    .capability-grid > article,
    .credibility-cards > article,
    .products-grid > article,
    .industry-grid > article,
    .news-slider > article {
        flex: 0 0 auto;
    }

    .product-card img {
        height: 220px;
        aspect-ratio: auto;
    }

    .news-slider img {
        height: 180px;
    }

    .industry-grid article {
        min-height: 210px;
    }

    .industry-grid h3 {
        font-size: 18px;
    }

    .news-slider h3 {
        font-size: 16px;
        line-height: 1.45;
    }

    .news-card-body {
        padding: 12px 12px 14px;
    }

    .product-card h3,
    .credibility-cards article h3,
    .info-card h3 {
        font-size: 18px;
        line-height: 1.35;
    }

    .product-card p,
    .credibility-cards article p,
    .info-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .trust-logos {
        gap: 16px;
        justify-content: center;
    }

    .trust-logos img {
        width: 72px;
        height: 72px;
    }

    .mobile-float-rfq {
        padding: 10px 14px;
        font-size: 13px;
    }

    .mobile-float-rfq {
        display: inline-flex;
    }
}
