/********** Solmatrix Premium — v2 **********/

body.solmatrix-home,
body.solmatrix-inner {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

body.solmatrix-inner .navbar-solmatrix.navbar-floating {
    background: rgba(19, 34, 41, 0.88);
}

/* Glowing CTA — hero/section buttons only (not nav) */
.btn-glow:not(.btn-nav-cta) {
    position: relative;
    animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 4px 24px var(--primary-glow); }
    50% { box-shadow: 0 4px 36px rgba(255, 161, 11, 0.55); }
}

/* Services dropdown */
.dropdown-menu-services {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.5rem;
    min-width: 260px;
    background: rgba(19, 34, 41, 0.98) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    margin-top: 0.65rem !important;
    box-shadow: var(--shadow-lg);
}
.dropdown-menu-services .dropdown-item {
    border-radius: 8px;
    padding: 0.55rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}
.dropdown-menu-services .dropdown-item:hover,
.dropdown-menu-services .dropdown-item.active {
    background: rgba(255, 161, 11, 0.15);
    color: var(--accent);
}

/* Premium service cards */
.service-card-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--white), var(--light));
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(255, 161, 11, 0.4), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}
.service-card-premium:hover::before { opacity: 1; }
.service-card-premium .card-glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card-premium:hover .card-glow { opacity: 1; }
.service-icon-wrap {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--dark);
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    transition: transform 0.4s, background 0.4s, color 0.4s;
}
.service-card-premium:hover .service-icon-wrap {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.08) rotate(-3deg);
}
.service-card-premium h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.service-card-premium p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}
.service-card-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
}
.service-card-premium:hover .service-card-link-arrow { gap: 0.75rem; }

/* Stats premium */
.stats-bar-premium {
    margin-top: -3rem;
    position: relative;
    z-index: 5;
    padding: 0 0 4rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-box {
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.stat-box:hover { background: rgba(255, 161, 11, 0.06); }
.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-box .stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Industries */
.industry-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--dark);
    color: #fff;
    min-height: 200px;
    overflow: hidden;
    transition: transform var(--transition);
}
.industry-card:hover { transform: translateY(-6px); }
.industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 34, 41, 0.95), transparent 60%);
}
.industry-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.industry-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.industry-card p {
    font-size: 0.88rem;
    color: var(--text-on-dark);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Engineering excellence */
.excellence-panel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-elevated) 100%);
    padding: 3rem;
    position: relative;
}
.excellence-panel::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    top: -100px;
    right: -100px;
    animation: float-glow 8s ease-in-out infinite;
}
@keyframes float-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}
.metric-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.metric-item strong {
    display: block;
    font-size: 1.75rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* Process timeline home */
.process-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); }
}
.process-card {
    padding: 1.75rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.process-card .step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 161, 11, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.testimonial-slider::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 min(100%, 380px);
    scroll-snap-align: start;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.testimonial-card .quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

/* Partners */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0.55;
}
.partner-logos span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* CTA band */
.cta-band {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}
.cta-band-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--dark), var(--dark-elevated) 50%, var(--dark-card));
}
.cta-band-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/carousel-2.jpg") center/cover;
    opacity: 0.15;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}
.cta-band p {
    color: var(--text-on-dark);
    max-width: 560px;
    margin: 0 auto 2rem;
}

/* Service page hero */
.service-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--nav-height) + 3rem) 0 4rem;
    overflow: hidden;
}
.service-hero-bg {
    position: absolute;
    inset: 0;
}
.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 34, 41, 0.7) 0%, rgba(19, 34, 41, 0.95) 100%);
}
.service-hero-content {
    position: relative;
    z-index: 2;
}
.breadcrumb-nav {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--text-on-dark);
}
.breadcrumb-nav a {
    color: var(--accent);
    text-decoration: none;
}
.breadcrumb-nav span { margin: 0 0.5rem; opacity: 0.5; }
.service-hero-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 161, 11, 0.15);
    border: 1px solid rgba(255, 161, 11, 0.35);
    border-radius: 16px;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.service-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
}
.service-hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 640px;
    margin-bottom: 2rem;
}

.lead-text { font-size: 1.05rem; line-height: 1.75; }
.text-muted-custom { color: var(--text-muted); line-height: 1.75; }
.glass-panel-dark {
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: #fff;
}
.glass-panel-dark h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    padding: 0.45rem 0;
    display: flex;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
}
.check-list i { color: var(--primary); margin-top: 0.2rem; }

/* Tech deliverable cards */
.tech-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    height: 100%;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 161, 11, 0.35);
    box-shadow: var(--shadow-sm);
}
.tech-card i {
    color: var(--primary);
    margin-top: 0.15rem;
}
.tech-card span {
    font-size: 0.92rem;
    font-weight: 500;
}

/* Process timeline service page */
.process-timeline {
    display: grid;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.process-timeline::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(255, 161, 11, 0.1));
}
.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0 1.5rem 0;
    position: relative;
}
.process-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 1;
}
.process-step h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}
.process-step p {
    color: var(--text-on-dark);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Trust pills */
.trust-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}
.trust-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.trust-pill i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.65rem;
}
.trust-pill span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Showcase */
.showcase-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}
.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.showcase-img {
    position: relative;
    aspect-ratio: 3/2;
}
.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showcase-mw {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}
.showcase-body {
    padding: 1.25rem;
}
.showcase-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    font-weight: 700;
}
.showcase-body h3 {
    font-size: 1rem;
    margin: 0.35rem 0 0;
}

/* Software cards */
.software-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    background: var(--light);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform var(--transition), background var(--transition);
}
.software-card:hover {
    transform: translateY(-6px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}
.software-card i {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.65rem;
}
.software-card span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* FAQ */
.container-narrow { max-width: 760px; }
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--white);
}
.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.1rem 1.25rem;
    background: var(--white);
    color: var(--text);
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 161, 11, 0.08);
    color: var(--primary-dark);
}
.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px var(--primary-glow);
}
.faq-accordion .accordion-body {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 1.25rem 1.25rem;
}

/* CTA banner service */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-elevated) 40%, var(--dark-card));
}
.cta-banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--primary-glow), transparent 60%);
    animation: float-glow 10s ease-in-out infinite;
}
.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 1rem;
    position: relative;
}
.cta-banner p {
    color: var(--text-on-dark);
    max-width: 560px;
    margin: 0 auto 2rem;
    position: relative;
}

/* Hero gradient animation */
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
    pointer-events: none;
}

/* Counter animation ready */
.stat-number[data-count] {
    display: inline-block;
}

.section-padding-sm {
    padding: 3rem 0;
}

/* Inner page heroes (about, contact) */
.page-hero {
    min-height: 42vh;
}

/* Mission cards */
.mission-card {
    height: 100%;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.mission-card-dark {
    background: linear-gradient(145deg, var(--dark), var(--dark-elevated));
    border-color: var(--glass-border);
    color: #fff;
}
.mission-card-dark p { color: var(--text-on-dark); }
.mission-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 161, 11, 0.12);
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.mission-card-dark .mission-icon {
    background: rgba(255, 161, 11, 0.2);
}
.mission-card h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.mission-card p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Capability cards (dark section) */
.capability-card {
    padding: 1.75rem;
    border-radius: var(--radius);
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    height: 100%;
    transition: transform var(--transition), border-color var(--transition);
}
.capability-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 161, 11, 0.35);
}
.capability-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.capability-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.capability-card p {
    color: var(--text-on-dark);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Team cards */
.team-card-premium {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.team-card-premium img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.team-card-body {
    padding: 1.25rem 1.5rem;
}
.team-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.team-card-body span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Contact page — light theme form */
.contact-page-section {
    background: var(--white);
}
.contact-info-light .contact-info-list strong {
    color: var(--text);
}
.contact-info-light .contact-info-list a,
.contact-info-light .contact-info-list span {
    color: var(--text-muted);
}
.contact-info-icon-light {
    background: rgba(255, 161, 11, 0.1) !important;
    border-color: rgba(255, 161, 11, 0.2) !important;
    color: var(--primary-dark) !important;
}
.social-link-light {
    background: var(--light) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
}
.social-link-light:hover {
    background: var(--primary) !important;
    color: var(--dark) !important;
}
.contact-form-light {
    background: var(--light) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2.5rem !important;
    backdrop-filter: none !important;
}
.contact-form-light .form-label {
    color: var(--text) !important;
    font-weight: 500;
}
.contact-form-light .form-control,
.contact-form-light .form-select {
    background: var(--white) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: 12px !important;
}
.contact-form-light .form-control:focus,
.contact-form-light .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px var(--primary-glow) !important;
}
.contact-form-light .form-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}
.badge-service {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.badge-service:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}
.map-panel {
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}
.map-panel iframe {
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

/* Structure supply — product catalog */
.supply-products-section {
    background: var(--white);
}
.supply-category {
    margin-bottom: 3.5rem;
}
.supply-category:last-of-type {
    margin-bottom: 2.5rem;
}
.supply-category-title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 161, 11, 0.25);
}
.supply-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: rgba(255, 161, 11, 0.12);
    color: var(--primary-dark);
}
.supply-product-card {
    padding: 1.75rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.supply-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 161, 11, 0.35);
}
.supply-product-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--dark);
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
.supply-product-card h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 0.65rem;
}
.supply-product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.supply-product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
}
.supply-product-link:hover {
    color: var(--dark);
}
.supply-highlights {
    margin-top: 1rem;
    padding: 2rem 2.25rem;
    background: var(--dark);
    border-radius: var(--radius-lg);
    color: var(--text-on-dark);
}
.supply-highlights-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.supply-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.supply-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
}
.supply-highlights-list i {
    color: var(--primary);
    margin-top: 0.15rem;
}
.supply-highlights-note {
    margin: 1.25rem 0 0;
    font-size: 0.85rem;
}
