:root {
  --blue-900: #082f6f;
  --blue-800: #0b3f8a;
  --blue-700: #1556b3;
  --blue-600: #1d6fe8;
  --blue-100: #eaf3ff;
  --blue-050: #f5f9ff;
  --text: #102033;
  --muted: #5f7087;
  --line: #d8e4f2;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(8, 47, 111, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  left: 16px;
  position: fixed;
  top: -60px;
  z-index: 100;
}

.skip-link:focus {
  background: var(--white);
  border: 1px solid var(--line);
  top: 16px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 14px clamp(16px, 4vw, 48px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 30;
}

.site-header.scrolled,
.site-header.open {
  box-shadow: 0 8px 30px rgba(8, 47, 111, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.site-logo {
  display: block;
  height: 56px;
  max-height: 75px;
  object-fit: contain;
  overflow: visible;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--blue-900);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-tagline {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-logo {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: inline-block;
  height: 80px;
  margin-bottom: 14px;
  object-fit: contain;
  padding: 8px 16px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.site-nav a,
.header-cta,
.menu-button {
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.button {
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
}

.header-cta,
.button.primary {
  background: var(--blue-700);
  border: 1px solid var(--blue-700);
  color: var(--white);
}

.button.secondary {
  background: var(--blue-100);
  border: 1px solid var(--blue-100);
  color: var(--blue-900);
}

.button.outline {
  background: var(--white);
  border: 1px solid var(--blue-700);
  color: var(--blue-700);
}

.button:hover,
.header-cta:hover {
  filter: brightness(0.96);
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  justify-self: end;
}

.page-section {
  padding: clamp(56px, 7vw, 96px) clamp(16px, 5vw, 72px);
}

.soft {
  background: var(--blue-050);
}

/* --- HERO AUTOMATIC BACKGROUND SLIDER --- */
.hero-slider-section {
  position: relative;
  width: 100%;
}

.hero-slider {
  height: clamp(520px, 70vh, 680px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-slides {
  height: 100%;
  position: relative;
  width: 100%;
}

.hero-slide {
  align-items: center;
  background-position: center;
  background-size: cover;
  display: flex;
  height: 100%;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 40px clamp(24px, 6vw, 80px) 90px;
  position: absolute;
  pointer-events: none;
  transition: opacity 800ms ease-in-out, transform 800ms ease-in-out;
  transform: scale(1.02);
  width: 100%;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-content {
  color: var(--white);
  max-width: 900px;
  text-align: center;
}

.hero-eyebrow {
  color: #9dccff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-slide-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.14;
  margin-bottom: 16px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  margin: 0 auto 28px;
  max-width: 720px;
}

.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-btn {
  background: var(--blue-800);
  border: 1px solid var(--blue-700);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
}

.hero-btn:hover {
  background: var(--blue-700);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.32);
}

/* Slider Controls (Arrows & Dots matching Photos 1-4) */
.slider-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  position: absolute;
  top: calc(50% - 30px);
  transition: background 150ms ease, border-color 150ms ease;
  width: 44px;
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-dots {
  bottom: 80px;
  display: flex;
  gap: 8px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 10;
}

.slider-dot {
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: width 200ms ease, background 200ms ease;
  width: 10px;
}

.slider-dot.active {
  background: var(--white);
  width: 28px;
}

/* --- FLOATING TRUST BANNER AT BOTTOM OF HERO (Photos 1-4) --- */
.hero-trust-bar-container {
  margin-top: -50px;
  padding: 0 clamp(16px, 4vw, 48px);
  position: relative;
  z-index: 12;
}

.hero-trust-bar {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(8, 47, 111, 0.16);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px 28px;
}

.trust-column {
  align-items: center;
  display: flex;
  gap: 16px;
}

.trust-icon {
  align-items: center;
  background: var(--blue-050);
  border-radius: 50%;
  color: var(--blue-800);
  display: flex;
  flex-shrink: 0;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.trust-text strong {
  color: var(--blue-900);
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.trust-text p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.trust-divider {
  background: var(--line);
  height: 44px;
  width: 1px;
}

/* --- FULL-SCREEN DEEP BLUE MENU OVERLAY (Photo 5) --- */
.fullmenu-overlay {
  background: #082f6f; /* Deep blue from photo 5 */
  bottom: 0;
  color: var(--white);
  display: flex;
  flex-direction: column;
  inset: 0;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  padding: 24px clamp(20px, 6vw, 64px);
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 250ms ease, visibility 250ms ease;
  visibility: hidden;
  z-index: 200;
}

.fullmenu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.fullmenu-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  width: 100%;
}

.fullmenu-logo {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: inline-block;
  height: 75px;
  object-fit: contain;
  padding: 8px 16px;
  width: auto;
}

.fullmenu-close {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  margin-bottom: 24px;
  padding: 4px;
}

.fullmenu-close:hover {
  opacity: 0.8;
}

.fullmenu-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.fullmenu-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 600;
  padding: 16px 0;
  transition: color 150ms ease, padding-left 150ms ease;
}

.fullmenu-link:hover {
  color: #9dccff;
  padding-left: 8px;
}

.fullmenu-actions {
  margin-bottom: 28px;
}

.fullmenu-brochure-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  transition: background 150ms ease, border-color 150ms ease;
}

.fullmenu-brochure-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.fullmenu-contact {
  margin-top: auto;
  padding-top: 12px;
}

.fullmenu-contact-note {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  margin-bottom: 16px;
}

.fullmenu-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-line {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
}

.contact-line:hover {
  color: #9dccff;
}

.fullmenu-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-icon-btn {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition: background 150ms ease, border-color 150ms ease;
  width: 40px;
}

.social-icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

.fullmenu-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  padding-top: 16px;
}

.fullmenu-copyright p {
  margin: 0;
}

/* Brochure Modal */
.brochure-modal {
  max-width: 580px;
}

.brochure-panel {
  padding: 32px;
}

.brochure-preview-box {
  background: var(--blue-050);
  border: 1px dashed var(--blue-600);
  border-radius: var(--radius);
  margin-top: 20px;
  padding: 20px;
  text-align: center;
}

.brochure-badge {
  background: var(--blue-700);
  border-radius: 999px;
  color: var(--white);
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--blue-900);
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  letter-spacing: 0;
  line-height: 1.03;
  margin-bottom: 22px;
}

h2 {
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 16px;
}

h3 {
  color: var(--blue-900);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/* Responsive adjustments for hero trust bar */
@media (max-width: 860px) {
  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }
  .trust-divider {
    display: none;
  }
  .slider-arrow.prev {
    left: 8px;
  }
  .slider-arrow.next {
    right: 8px;
  }
}

.hero-copy > p,
.section-heading > p,
.section-heading div + p,
.quote-intro p,
.muted {
  color: var(--muted);
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-line span,
.pill,
.tag-row span,
.step-row span {
  background: var(--blue-100);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-900);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
}

.hero-card,
.feature-card,
.tool-panel,
.product-card,
.product-preview,
.dash-card,
.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.hero-image {
  background:
    linear-gradient(rgba(8, 47, 111, 0.08), rgba(8, 47, 111, 0.16)),
    url("https://images.unsplash.com/photo-1581093458791-9d42e834cbc0?auto=format&fit=crop&w=1400&q=80") center/cover;
  min-height: 360px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-stats div {
  border-right: 1px solid var(--line);
  padding: 18px;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: var(--blue-700);
  display: block;
  font-size: 1.45rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  margin-bottom: 34px;
}

.section-heading.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
  text-align: center;
}

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

.feature-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 900px;
}

.feature-card,
.tool-panel {
  padding: 22px;
}

.tool-panel {
  min-height: 240px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.category-tab {
  align-items: center;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-900);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  padding: 10px 18px;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.category-tab small {
  background: var(--blue-100);
  border-radius: 999px;
  color: var(--blue-700);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
}

.category-tab:hover,
.category-tab.active {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
}

.category-tab.active small {
  background: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.product-stage {
  display: block;
}

.product-preview {
  display: none;
}

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

@media (max-width: 1280px) {
  .product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .product-list {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  color: var(--text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 560px;
  overflow: hidden;
  position: relative;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  width: 100%;
}

.product-card:hover,
.product-card:focus,
.product-card.active {
  border-color: var(--blue-600);
  box-shadow: 0 12px 30px rgba(29, 111, 232, 0.16);
  outline: none;
  transform: translateY(-3px);
}

.product-card-image {
  background-color: #f8fafc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  height: 220px;
  margin: 0;
  padding: 12px;
  box-sizing: border-box;
  width: 100%;
}

.product-card-body {
  box-sizing: border-box;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.product-category-tag {
  color: var(--blue-700);
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card-body h3 {
  align-items: flex-start;
  color: var(--blue-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.12rem;
  font-weight: 800;
  height: 46px;
  line-height: 1.3;
  margin: 0 0 8px;
  overflow: hidden;
  width: 100%;
}

.product-card-desc {
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 13.5px;
  height: 60px;
  line-height: 1.48;
  margin: 0 0 12px;
  overflow: hidden;
  width: 100%;
}

.product-card-body .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  max-height: 30px;
  overflow: hidden;
}

.product-card-body .tag-row span {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--blue-700);
  font-weight: 600;
}

.product-card-btn {
  align-items: center;
  background: var(--blue-900);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  text-align: center;
  transition: background 160ms ease, transform 160ms ease;
  width: 100%;
}

.product-card-btn:hover {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-1px);
}

.product-preview {
  padding: 20px;
  position: sticky;
  top: 92px;
}

.category-badge {
  background: var(--blue-100);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-900);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 5px 12px;
}

.product-image,
.application-bg {
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
}

.product-image {
  height: 240px;
  margin-bottom: 16px;
}

.preview-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.block-btn {
  text-align: center;
  width: 100%;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.application-stage {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.85fr 1.15fr;
}

.application-bg {
  background-image: linear-gradient(rgba(8, 47, 111, 0.14), rgba(8, 47, 111, 0.2)), url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1400&q=80");
  min-height: 420px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  transition: background-image 300ms ease;
}

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

.application-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color 200ms ease, transform 200ms ease;
  cursor: pointer;
}

.application-item:hover {
  border-color: var(--blue-600);
  transform: translateX(3px);
}

.text-link {
  background: transparent;
  border: 0;
  color: var(--blue-700);
  cursor: pointer;
  font-weight: 700;
  padding: 0;
}

.text-link::after {
  content: " ->";
}

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

.resource-row,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.resource-row {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto auto;
}

.quote-page {
  display: grid;
  gap: 36px;
  grid-template-columns: 0.85fr 1.15fr;
  position: relative;
  background-color: #06152a;
  background-image: 
    linear-gradient(135deg, rgba(6, 21, 42, 0.93) 0%, rgba(10, 36, 72, 0.88) 50%, rgba(4, 14, 28, 0.95) 100%),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(6, 21, 42, 0.35);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.quote-intro .eyebrow {
  color: #38bdf8;
}

.quote-intro h2 {
  color: #ffffff;
}

.quote-intro p {
  color: rgba(255, 255, 255, 0.88);
}

.quote-page .check-list {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 20px;
}

.product-detail-modal .check-list,
[data-detail-features] {
  color: #0f172a;
  list-style: none;
  padding-left: 0;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-detail-modal .check-list li,
[data-detail-features] li {
  position: relative;
  padding-left: 28px;
  color: #0f172a;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
}

.product-detail-modal .check-list li::before,
[data-detail-features] li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0284c7;
  font-weight: 900;
  font-size: 15px;
}

.quote-page .lead-form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.quote-page input,
.quote-page textarea {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: var(--radius);
}

.quote-page input::placeholder,
.quote-page textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.quote-page input:focus,
.quote-page textarea:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: #38bdf8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.4);
  outline: none;
}

.lead-form {
  padding: 22px;
}

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

input,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(29, 111, 232, 0.16);
}

textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.lead-form .button {
  margin-top: 14px;
}

.form-result {
  color: var(--blue-900);
  display: block;
  font-weight: 700;
  margin-top: 12px;
}

.dashboard {
  background: var(--blue-050);
  border-radius: var(--radius-lg);
  display: block;
}

.dashboard-dropdown-container {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(11, 53, 109, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 24px;
  padding: 18px 22px;
}

.dashboard-select-label {
  align-items: center;
  color: var(--blue-900);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
}

.dashboard-dropdown-select {
  appearance: none;
  background-color: var(--blue-050);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230b356d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 2px solid var(--blue-600);
  border-radius: var(--radius);
  color: var(--blue-900);
  cursor: pointer;
  flex: 1;
  font-size: 15px;
  font-weight: 800;
  min-width: 260px;
  padding: 13px 44px 13px 20px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.dashboard-dropdown-select:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(29, 111, 232, 0.2);
  outline: none;
}

.dashboard-nav {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  padding: 12px 18px;
}

.dashboard-nav button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  padding: 8px 14px;
  width: auto;
}

.dashboard-nav strong {
  color: var(--blue-900);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.dashboard-nav button {
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  display: block;
  font-weight: 700;
  margin: 3px 0;
  padding: 11px 12px;
  text-align: left;
  width: 100%;
}

.dashboard-nav button.active,
.dashboard-nav button:hover {
  background: var(--blue-700);
  color: var(--white);
}

.dashboard-main {
  min-width: 0;
}

.dashboard-main > p:not(.eyebrow) {
  color: var(--muted);
}

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

.dash-card {
  min-height: 170px;
  padding: 20px;
}

.dash-card.wide {
  grid-column: span 2;
}

.dash-card strong {
  color: var(--blue-900);
  display: block;
  font-size: 1.65rem;
}

.footer {
  background: var(--blue-900);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  padding: 48px clamp(16px, 5vw, 72px);
}

.footer h2 {
  color: var(--white);
  font-size: 1.65rem;
}

.footer a,
.footer small,
.footer p {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  margin-bottom: 8px;
}

.footer .eyebrow {
  color: #9dccff;
}

.footer .text-link {
  color: #9dccff;
}

.whatsapp-float,
.chat-launcher {
  bottom: 22px;
  position: fixed;
  z-index: 20;
}

.whatsapp-float {
  background: #0f9f62;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  left: 22px;
  padding: 12px 16px;
}

.chat-launcher {
  background: var(--blue-900);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--white);
  cursor: pointer;
  display: grid;
  gap: 3px;
  max-width: 260px;
  padding: 16px;
  right: 22px;
  text-align: left;
}

.chat-launcher span,
.chat-launcher strong {
  color: #9dccff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.chat-launcher small {
  color: rgba(255, 255, 255, 0.82);
}

dialog {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: min(960px, calc(100vw - 28px));
  padding: 0;
  width: 100%;
}

dialog::backdrop {
  background: rgba(8, 47, 111, 0.38);
}

.modal-close {
  background: var(--blue-900);
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  padding: 10px 12px;
  position: absolute;
  right: 14px;
  top: 14px;
}

.finder-panel {
  padding: clamp(28px, 5vw, 54px);
}

.step-row,
.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.option-grid button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-900);
  cursor: pointer;
  font-weight: 700;
  min-height: 68px;
  padding: 14px;
  text-align: left;
}

.option-grid button:hover {
  background: var(--blue-700);
  color: var(--white);
}

.finder-output {
  color: var(--muted);
}

.chat-modal {
  max-width: 520px;
}

.chat-window {
  background: var(--white);
}

.chat-window header {
  align-items: center;
  background: var(--blue-900);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

.chat-window header button {
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  color: var(--blue-900);
  cursor: pointer;
  padding: 8px 10px;
}

.chat-window small {
  color: rgba(255, 255, 255, 0.78);
  display: block;
}

.chat-log {
  display: grid;
  gap: 10px;
  max-height: 420px;
  overflow: auto;
  padding: 16px;
}

.message {
  background: var(--blue-050);
  border-radius: var(--radius);
  padding: 12px;
}

.message.ai {
  background: var(--blue-900);
  color: var(--white);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-actions button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-900);
  cursor: pointer;
  padding: 8px 10px;
}

.chat-form {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  padding: 16px;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-stage,
  .application-stage,
  .quote-page,
  .dashboard,
  .hero {
    grid-template-columns: 1fr;
  }

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

  .product-preview,
  .dashboard-nav {
    position: relative;
    top: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .site-header.open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: max-content;
  }

  .section-heading,
  .footer,
  .feature-grid.two {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dash-card.wide {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .product-list,
  .form-grid,
  .dashboard-grid,
  .hero-stats,
  .resource-row,
  .chat-form {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .chat-launcher {
    bottom: 18px;
    left: 18px;
    max-width: none;
    right: 18px;
  }

  .whatsapp-float {
    bottom: 118px;
    left: 18px;
  }
}

/* --- ABOUT DYNAMIC CARBON SECTION STYLES --- */
.about-section {
  background: var(--blue-050);
}

.about-lead {
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 900px;
}

.about-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 0.85fr;
  margin: 36px 0;
}

.about-main-card,
.about-side-card,
.commitment-card,
.partnerships-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-section {
  position: relative;
  background-color: #060e1a;
  background-image: 
    linear-gradient(135deg, rgba(6, 14, 26, 0.94) 0%, rgba(9, 25, 48, 0.91) 50%, rgba(6, 14, 26, 0.96) 100%),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 64px clamp(16px, 5vw, 72px);
}

.about-section .section-heading h2 {
  color: #ffffff;
}

.about-section .about-lead {
  color: rgba(255, 255, 255, 0.88);
}

.about-main-card,
.about-side-card {
  background: #ffffff;
  border: none;
  box-shadow: 0 12px 36px rgba(8, 47, 111, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--text);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.about-main-card:hover,
.about-side-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(8, 47, 111, 0.09);
}

.about-main-card h3 {
  color: var(--blue-900);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-side-card h4 {
  color: var(--blue-900);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.industries-block strong {
  color: var(--blue-900);
  font-weight: 700;
}

.about-main-card p,
.about-side-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  margin-bottom: 16px;
}

.side-card-badge {
  background: var(--blue-100);
  border: none;
  color: var(--blue-800);
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.industry-tags span {
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
}

/* Glossy Dark & Light Blue Mixed Glass Texture Background for Applications Section */
.applications.page-section {
  position: relative;
  background: 
    radial-gradient(circle at 20% 25%, rgba(56, 189, 248, 0.45) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 80% 75%, rgba(2, 132, 199, 0.35) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 1.5px, transparent 2px),
    linear-gradient(135deg, #071f48 0%, #0a3d8f 28%, #0284c7 60%, #084c9c 82%, #06193b 100%);
  background-size: 100% 100%, 100% 100%, 20px 20px, 100% 100%;
  border-top: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(8, 47, 111, 0.8);
  box-shadow: 
    inset 0 2px 8px rgba(255, 255, 255, 0.5),
    inset 0 -8px 24px rgba(4, 18, 45, 0.6),
    0 16px 36px rgba(8, 47, 111, 0.18);
  overflow: hidden;
}

.applications.page-section::before {
  content: "";
  position: absolute;
  top: -75%;
  left: -60%;
  width: 220%;
  height: 250%;
  background: 
    linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 45%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.35) 55%, transparent 70%),
    radial-gradient(ellipse at 35% 20%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(ellipse at 65% 85%, rgba(56, 189, 248, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 1;
}

.applications.page-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 40%, rgba(4, 18, 45, 0.25) 100%);
  pointer-events: none;
  z-index: 1;
}

.applications.page-section .section-heading h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
  letter-spacing: -0.02em;
}

.applications.page-section .section-heading .eyebrow {
  color: #071f48;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 8px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  display: inline-block;
}

.applications.page-section > * {
  position: relative;
  z-index: 2;
}

.application-stage {
  display: block;
  width: 100%;
}

.application-bg {
  display: none !important;
}

.application-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.application-item {
  flex: 0 0 310px;
  width: 310px;
  height: 515px;
  box-sizing: border-box;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(8, 47, 111, 0.06);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  cursor: pointer;
}

.application-item:hover {
  border-color: var(--blue-600);
  box-shadow: 0 14px 36px rgba(29, 111, 232, 0.18);
  transform: translateY(-4px);
}

.application-thumb {
  width: 100%;
  height: 205px;
  flex-shrink: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.application-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.application-item:hover .application-thumb-img {
  transform: scale(1.06);
}

.application-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
  box-sizing: border-box;
}

.application-details .eyebrow {
  color: var(--blue-600);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.application-details h3 {
  color: var(--blue-900);
  font-size: 1.22rem;
  font-weight: 800;
  height: 46px;
  line-height: 1.3;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.application-details p {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  height: 60px;
  line-height: 1.48;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.application-details .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
  max-height: 28px;
  overflow: hidden;
}

.application-details .tag-row span {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--blue-700);
  font-weight: 700;
}

.click-guide-badge {
  margin-top: auto;
  align-self: flex-start;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 150ms ease, transform 150ms ease;
}

.application-item:hover .click-guide-badge {
  color: var(--blue-900);
  transform: translateX(3px);
}

/* --- Solution Detail View Modal Styling --- */
.solution-detail-modal {
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(8, 30, 60, 0.35);
  max-width: 920px;
  padding: 0;
  width: 100%;
}

.solution-article {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--text);
}

.solution-hero-banner {
  position: relative;
  height: 260px;
  width: 100%;
  overflow: hidden;
}

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

.solution-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 17, 34, 0.95) 0%, rgba(6, 17, 34, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px clamp(20px, 4vw, 40px);
  color: #ffffff;
}

.solution-hero-overlay .eyebrow-pill {
  display: inline-block;
  align-self: flex-start;
  background: rgba(14, 165, 233, 0.3);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #38bdf8;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.solution-hero-overlay h1 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 0;
}

.solution-article-content {
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.solution-block h3 {
  color: var(--blue-900);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  border-left: 4px solid var(--blue-600);
  padding-left: 12px;
}

.solution-block p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  margin-bottom: 12px;
}

.challenges-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.challenge-card {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.challenge-card.full {
  grid-column: 1 / -1;
  background: var(--blue-050);
  border-color: var(--blue-200);
}

.challenge-card h4 {
  color: var(--blue-900);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.challenge-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.highlight-flow-block {
  background: linear-gradient(135deg, #091a34 0%, #0c2b54 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #ffffff;
}

.highlight-flow-block h3 {
  color: #ffffff;
  border-left-color: #38bdf8;
}

.process-flow-stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 18px 0 14px;
}

.flow-step {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
}

.flow-step.highlight {
  background: #38bdf8;
  color: #091a34;
  font-weight: 800;
  border-color: #38bdf8;
}

.flow-arrow {
  color: #38bdf8;
  font-weight: 800;
  font-size: 16px;
}

.flow-note {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  margin-top: 8px !important;
}

.solution-features-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.solution-features-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
}

.solution-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-600);
  font-weight: 900;
}

.solution-industries-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-industries-pills span {
  background: var(--blue-050);
  border: 1px solid var(--blue-200);
  color: var(--blue-900);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

.why-choose-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.company-tagline-signoff {
  background: var(--blue-050);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius);
  color: var(--blue-900);
  padding: 18px 20px;
  margin: 18px 0;
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.modal-cta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.commitment-section {
  margin: 48px 0 36px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

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

.commitment-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  padding: 24px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.commitment-card:nth-child(1) {
  background-image: linear-gradient(135deg, rgba(6, 17, 34, 0.85) 0%, rgba(9, 25, 48, 0.92) 100%), url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=600&q=80");
}

.commitment-card:nth-child(2) {
  background-image: linear-gradient(135deg, rgba(6, 17, 34, 0.85) 0%, rgba(9, 25, 48, 0.92) 100%), url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=600&q=80");
}

.commitment-card:nth-child(3) {
  background-image: linear-gradient(135deg, rgba(6, 17, 34, 0.85) 0%, rgba(9, 25, 48, 0.92) 100%), url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=600&q=80");
}

.commitment-card:nth-child(4) {
  background-image: linear-gradient(135deg, rgba(6, 17, 34, 0.85) 0%, rgba(9, 25, 48, 0.92) 100%), url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=600&q=80");
}

.commitment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

.commitment-card:hover {
  box-shadow: 0 16px 36px rgba(8, 47, 111, 0.28);
  transform: translateY(-3px);
}

.commitment-icon {
  align-items: center;
  background: rgba(14, 165, 233, 0.22);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 12px;
  color: #38bdf8;
  display: flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 16px;
  width: 52px;
}

.commitment-card h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.commitment-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.partnerships-card {
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fe 100%);
  padding: clamp(24px, 4vw, 40px);
}

.partnerships-body h3 {
  color: var(--blue-900);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 14px;
}

.partnerships-body > p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 960px;
}

.tagline-box {
  background: var(--blue-900);
  border-radius: var(--radius);
  color: var(--white);
  margin: 24px 0;
  padding: 24px;
}

.tagline-box p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.company-signoff {
  color: #9dccff;
  display: block;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .commitment-grid {
    grid-template-columns: 1fr;
  }
}

/* --- VIEW MORE PRODUCTS BUTTON STYLES --- */
.view-more-container {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.view-more-btn {
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
}

/* --- DEDICATED PRODUCT DETAIL VIEW MODAL --- */
.product-detail-modal {
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(8, 47, 111, 0.28);
  max-height: 92vh;
  max-width: min(1080px, calc(100vw - 32px));
  padding: 0;
  width: 100%;
}

.product-detail-window {
  background: var(--white);
  display: flex;
  flex-direction: column;
  max-height: 92vh;
  overflow-y: auto;
}

.detail-header {
  align-items: center;
  background: var(--blue-050);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.detail-back-btn {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  min-height: 38px;
  padding: 6px 14px;
}

.product-detail-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 28px clamp(20px, 4vw, 36px);
}

.detail-image-box {
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 280px;
  margin-bottom: 18px;
  width: 100%;
}

.detail-tags-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.detail-quick-specs {
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.detail-quick-specs strong {
  color: var(--blue-900);
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.specs-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 8px 0;
}

.specs-list li:last-child {
  border-bottom: 0;
}

.specs-list span {
  color: var(--muted);
}

.status-badge {
  color: #059669 !important;
}

.detail-info-col h1 {
  color: var(--blue-900);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.detail-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.detail-section-box {
  border-top: 1px solid var(--line);
  margin-bottom: 24px;
  padding-top: 20px;
}

.detail-section-box h3 {
  color: var(--blue-900);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.application-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.application-tags-grid span {
  background: var(--blue-100);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
}

.detail-quote-box {
  align-items: center;
  background: var(--blue-900);
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 24px;
}

.detail-quote-box strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.detail-quote-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin: 0;
}

@media (max-width: 860px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* --- RICH TECHNICAL SPECIFICATIONS & GAC ARTICLE STYLES --- */
.table-responsive {
  margin-top: 14px;
  overflow-x: auto;
}

.gac-spec-table {
  border-collapse: collapse;
  border-radius: var(--radius);
  font-size: 13.5px;
  overflow: hidden;
  width: 100%;
}

.gac-spec-table th {
  background: var(--blue-900);
  color: var(--white);
  font-weight: 700;
  padding: 12px 14px;
  text-align: center;
}

.gac-spec-table th:first-child {
  text-align: left;
}

.gac-spec-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  text-align: center;
}

.gac-spec-table td:first-child {
  text-align: left;
}

.gac-spec-table tr:nth-child(even) {
  background: var(--blue-050);
}

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

.prop-card {
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.prop-card strong {
  color: var(--blue-900);
  display: block;
  font-size: 13.5px;
  margin-bottom: 4px;
}

.prop-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.mesh-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.mesh-pill {
  background: var(--blue-800);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
}

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

.grade-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.grade-card strong {
  color: var(--blue-700);
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.grade-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.app-detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  padding: 14px;
}

.app-detail-card strong {
  color: var(--blue-900);
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.app-detail-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  margin: 0;
}

.detail-disclaimer-box {
  background: #fff8e6;
  border: 1px solid #ffe58f;
  border-radius: var(--radius);
  color: #722ed1;
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 24px;
  padding: 16px 20px;
}

.detail-disclaimer-box p {
  color: #5b21b6;
  margin: 0;
}

.text-success {
  color: #059669 !important;
  font-weight: 700;
}

/* --- STANDALONE PAGE VIEW BREADCRUMB BAR --- */
.page-breadcrumb-bar {
  background: var(--blue-050);
  border-bottom: 1px solid var(--line);
  display: none;
  padding: 14px clamp(20px, 4vw, 48px);

  top: 72px;
  z-index: 90;
}

body[data-page-mode="standalone"] .page-breadcrumb-bar {
  display: block;
}

.breadcrumb-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
}

.page-back-link {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 7px 16px;
}

.breadcrumb-title {
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* --- TREATMENT FLOW GRID FOR PAC --- */
.treatment-flow-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.flow-step-card {
  align-items: center;
  background: var(--blue-900);
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  font-size: 13.5px;
  font-weight: 700;
  justify-content: center;
  padding: 12px 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .properties-grid,
  .grades-grid,
  .treatment-flow-grid {
    grid-template-columns: 1fr;
  }
}
