:root {
  --ink: #16202f;
  --muted-ink: #5e6978;
  --line: #d9e1ea;
  --soft: #f4f7f9;
  --panel: #ffffff;
  --brand: #0f766e;
  --brand-dark: #134e4a;
  --accent: #2563eb;
  --gold: #d97706;
  --shadow: 0 16px 40px rgba(22, 32, 47, 0.08);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}

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

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

input,
textarea,
button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(860px, calc(100% - 40px));
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px max(20px, calc((100vw - 1180px) / 2));
  background: var(--brand-dark);
  color: #e7f7f5;
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 74px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.brand img {
  width: 116px;
  height: auto;
}

.main-nav > ul,
.main-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: block;
  padding: 12px 13px;
  color: #273449;
  font-size: 14px;
  font-weight: 700;
}

.main-nav li.active > a,
.main-nav a:hover {
  color: var(--brand);
}

.main-nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.18s ease;
}

.main-nav li:hover > ul {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.main-nav li ul a {
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 650;
}

.main-nav li ul ul {
  left: 100%;
  top: 0;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 800;
}

.hero {
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.9), rgba(8, 13, 22, 0.58) 48%, rgba(8, 13, 22, 0.22)),
    linear-gradient(135deg, #111827, #334155);
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100vh - 112px));
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.hero-compact,
.article-hero {
  min-height: auto;
  padding: 54px 0;
}

.hero-grid,
.split,
.contact-grid,
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 44px;
}

.split {
  grid-template-columns: 0.9fr 1fr;
}

.split-section.reverse .split,
.split.reverse {
  grid-template-columns: 1fr 0.9fr;
}

.split-section.reverse .split > :first-child,
.split.reverse > :first-child {
  order: 2;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--brand);
}

.kicker,
.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.18;
  letter-spacing: 0;
  color: #111827;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 62px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0 0 18px;
  color: var(--muted-ink);
}

.hero p {
  max-width: 650px;
  font-size: 18px;
}

.hero h1,
.hero p {
  color: #ffffff;
}

.hero .breadcrumbs,
.hero .breadcrumbs a,
.hero .kicker {
  color: #dbeafe;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  color: #ffffff;
  background: var(--brand);
  cursor: pointer;
}

.btn:hover {
  background: var(--brand-dark);
}

.btn.secondary {
  color: var(--brand-dark);
  background: #ffffff;
  border-color: var(--line);
}

.btn.text {
  min-height: auto;
  padding: 0;
  color: var(--brand);
  background: transparent;
}

.btn.light {
  color: var(--brand-dark);
  background: #ffffff;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.stat-row span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 150px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-ink);
}

.stat-row strong {
  color: var(--brand);
  font-size: 25px;
}

.image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 130px;
  padding: 20px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(37, 99, 235, 0.1)),
    #e5e7eb;
  color: #475569;
  text-align: center;
  font-size: 14px;
}

.image-placeholder strong {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 20px;
  color: #334155;
}

.home1-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 112px));
  overflow: hidden;
  background: #0b111d;
}

.home1-hero-media {
  position: absolute;
  inset: 0;
}

.home1-hero-media .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(2, 6, 23, 0.3), rgba(15, 118, 110, 0.08)),
    linear-gradient(135deg, #111827, #cbd5e1);
}

.home1-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.55) 48%, rgba(2, 6, 23, 0.18));
}

.home1-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(760px, calc(100vh - 112px));
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 92px 0;
}

.home1-hero-content h1 {
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 78px);
}

.home1-hero-content p {
  max-width: 720px;
  color: #ffffff;
  font-size: 20px;
}

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

.home1-category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
}

.home1-category-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(15, 78, 74, 0.9);
  font-weight: 900;
}

.home1-offer {
  background: #ffffff;
}

.home1-offer-head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.35fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 34px;
}

.home1-offer-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
}

.home1-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.home1-tabs button {
  min-width: 126px;
  min-height: 52px;
  padding: 10px 22px;
  border: 1px solid #111827;
  border-radius: 999px;
  color: #111827;
  background: #ffffff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
}

.home1-tabs button[aria-selected="true"] {
  color: #ffffff;
  background: #18181b;
}

.home1-tab-panel[hidden] {
  display: none;
}

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

.home1-offer-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 8px;
  background: #d1d5db;
}

.home1-offer-card .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.22)),
    linear-gradient(135deg, #e5e7eb, #b8c0cb);
}

.home1-offer-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(2, 6, 23, 0.38);
}

.home1-application-banner {
  padding: 96px 0;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(2, 6, 23, 0.94), rgba(17, 24, 39, 0.9)),
    #050812;
}

.home1-application-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  gap: 58px;
  align-items: start;
}

.home1-application-copy {
  padding-top: 28px;
}

.home1-application-copy .kicker,
.home1-application-copy h2,
.home1-application-copy p {
  color: #ffffff;
}

.home1-application-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.home1-application-copy p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
}

.home1-application-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 30px;
}

.home1-application-icons article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  text-align: center;
}

.application-icon {
  display: grid;
  place-items: center;
  width: 180px;
  max-width: 100%;
  min-height: 140px;
}

.application-icon .image-placeholder {
  width: 180px;
  max-width: 100%;
  min-height: 120px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
}

.application-icon .image-placeholder strong {
  display: none;
}

.home1-application-icons h3 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.25;
}

.home1-capacity {
  background: #ffffff;
}

.home1-capacity-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 46px;
}

.home1-capacity-head h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.home1-capacity-head p {
  max-width: 760px;
  margin: 0;
  color: #374151;
  font-size: 17px;
}

.home1-capacity-head .btn {
  min-width: 210px;
  border-color: #9ca3af;
  border-radius: 999px;
  color: #111827;
  background: #ffffff;
}

.home1-capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
}

.home1-capacity-grid article {
  overflow: hidden;
}

.home1-capacity-grid .image-placeholder {
  min-height: 260px;
  border: 0;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(37, 99, 235, 0.08)),
    #d8dee7;
}

.home1-capacity-grid h3 {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.home1-why {
  background: #ffffff;
}

.home1-why-head {
  margin: 0 auto 58px;
  text-align: center;
}

.home1-why-head h2 {
  margin: 0;
  color: #071827;
  font-size: clamp(38px, 5vw, 64px);
}

.home1-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 78px 64px;
}

.home1-why-grid article {
  text-align: center;
}

.home1-why-grid .image-placeholder {
  width: 160px;
  max-width: 100%;
  margin: 0 auto 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2f8f3a;
}

.home1-why-grid .image-placeholder strong {
  display: none;
}

.home1-why-grid h3 {
  margin: 0 0 14px;
  color: #020617;
  font-size: 26px;
  line-height: 1.25;
}

.home1-why-grid p {
  max-width: 460px;
  margin: 0 auto;
  color: #334155;
  font-size: 18px;
  line-height: 1.5;
}

.home1-business-process {
  background: #ffffff;
}

.home1-business-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  gap: 86px;
  align-items: start;
}

.home1-business-copy {
  position: sticky;
  top: 110px;
}

.home1-business-copy .kicker {
  color: #126ef8;
}

.home1-business-copy h2 {
  max-width: 620px;
  margin: 18px 0 28px;
  color: #061827;
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.18;
}

.home1-business-copy p {
  max-width: 700px;
  margin: 0;
  color: #15263a;
  font-size: 16px;
  line-height: 1.55;
}

.home1-process-timeline {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 0 0 0 6px;
}

.home1-process-timeline::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 29px;
  width: 1px;
  background: #1473ff;
  content: "";
}

.home1-process-step {
  position: relative;
}

.home1-process-step summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr 34px;
  gap: 24px;
  align-items: center;
  min-height: 74px;
  list-style: none;
  cursor: pointer;
}

.home1-process-step summary::-webkit-details-marker {
  display: none;
}

.home1-process-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #1473ff;
  border-radius: 50%;
  color: #126ef8;
  background: #ffffff;
  font-size: 16px;
  line-height: 1;
}

.home1-process-step[open] .home1-process-number {
  color: #ffffff;
  background: #126ef8;
}

.home1-process-title {
  color: #061827;
  font-size: clamp(19px, 1.9vw, 23px);
  font-weight: 900;
  line-height: 1.2;
}

.home1-process-arrow {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
}

.home1-process-arrow::before,
.home1-process-arrow::after {
  position: absolute;
  top: 10px;
  width: 13px;
  height: 3px;
  border-radius: 99px;
  background: #111827;
  content: "";
  transition: transform 0.18s ease;
}

.home1-process-arrow::before {
  left: 1px;
  transform: rotate(45deg);
}

.home1-process-arrow::after {
  right: 1px;
  transform: rotate(-45deg);
}

.home1-process-step[open] .home1-process-arrow::before {
  transform: rotate(-45deg);
}

.home1-process-step[open] .home1-process-arrow::after {
  transform: rotate(45deg);
}

.home1-process-step p {
  max-width: 720px;
  margin: -6px 34px 24px 112px;
  color: #5b6575;
  font-size: 15px;
  line-height: 1.5;
}

.home1-company-faq {
  color: #ffffff;
  background: #0b0b0d;
}

.home1-faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(560px, 1.2fr);
  gap: 90px;
  align-items: start;
}

.home1-faq-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}

.home1-faq-copy p {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.home1-faq-accent {
  display: block;
  width: 170px;
  height: 5px;
  margin: 36px 0 46px;
  border-radius: 999px;
  background: #e11d2e;
}

.home1-faq-copy .image-placeholder {
  width: min(100%, 620px);
  min-height: 520px;
  border: 0;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(225, 29, 46, 0.14), rgba(255, 255, 255, 0.05)),
    #202124;
  color: rgba(255, 255, 255, 0.82);
}

.home1-faq-list {
  display: grid;
}

.home1-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.home1-faq-item summary {
  display: grid;
  grid-template-columns: 64px 1fr 30px;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  list-style: none;
  cursor: pointer;
}

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

.home1-faq-number {
  color: #e11d2e;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.home1-faq-question {
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.home1-faq-toggle {
  position: relative;
  width: 26px;
  height: 26px;
  justify-self: end;
}

.home1-faq-toggle::before,
.home1-faq-toggle::after {
  position: absolute;
  top: 12px;
  left: 4px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.78);
  content: "";
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.home1-faq-toggle::after {
  transform: rotate(90deg);
}

.home1-faq-item[open] .home1-faq-toggle::after {
  opacity: 0;
  transform: rotate(0deg);
}

.home1-faq-item p {
  max-width: 760px;
  margin: -12px 52px 30px 86px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.home1-latest-news {
  background: #ffffff;
}

.home1-latest-head {
  margin-bottom: 44px;
  text-align: center;
}

.home1-latest-head h2 {
  margin: 0;
  color: #0b355b;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
}

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

.home1-news-card {
  text-align: center;
}

.home1-news-media {
  display: block;
  margin-bottom: 22px;
}

.home1-news-media .image-placeholder {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(14, 116, 144, 0.08), rgba(37, 99, 235, 0.08)),
    #d7dee8;
  color: #314865;
}

.home1-news-body h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.16;
}

.home1-news-body h3 a {
  color: #000000;
}

.home1-news-body p {
  max-width: 420px;
  margin: 0 auto;
  color: #204264;
  font-size: 15px;
  line-height: 1.55;
}

.home1-benefits {
  padding: 58px 0 72px;
  background: #ffffff;
}

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

.home1-benefits article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: center;
}

.home1-benefits h3 {
  margin-bottom: 6px;
  font-size: 28px;
}

.home1-benefits p {
  margin: 0;
  font-size: 21px;
  line-height: 1.42;
}

.home1-benefit-icon {
  position: relative;
  display: block;
  width: 88px;
  height: 88px;
  color: #061426;
}

.home1-benefit-icon.phone::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 42px;
  height: 54px;
  border: 8px solid currentColor;
  border-right-width: 0;
  border-radius: 24px 0 0 24px;
  transform: rotate(-38deg);
}

.home1-benefit-icon.phone::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
  width: 34px;
  height: 34px;
  border: 6px solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.home1-benefit-icon.price::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 4px;
  width: 48px;
  height: 64px;
  border: 7px solid currentColor;
  border-radius: 4px;
}

.home1-benefit-icon.price::after {
  content: "$";
  position: absolute;
  right: 2px;
  bottom: 4px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 7px solid currentColor;
  border-radius: 50%;
  background: #ffffff;
  font-size: 30px;
  font-weight: 900;
}

.home1-benefit-icon.truck::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 30px;
  width: 54px;
  height: 28px;
  border: 7px solid currentColor;
  border-left-width: 0;
}

.home1-benefit-icon.truck::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 18px;
  width: 68px;
  height: 44px;
  border-top: 7px solid currentColor;
  border-bottom: 7px solid currentColor;
  box-shadow:
    12px 52px 0 -15px currentColor,
    56px 52px 0 -15px currentColor,
    -16px 12px 0 -4px currentColor,
    -28px 24px 0 -4px currentColor;
}

.home1-brand-strip {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid #eef2f7;
}

.category3-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  background: #0c1621;
}

.category3-hero-media,
.category3-hero-overlay {
  position: absolute;
  inset: 0;
}

.category3-hero-media .image-placeholder {
  height: 100%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.28), rgba(15, 23, 42, 0.18)),
    linear-gradient(120deg, #334155, #94a3b8);
  color: rgba(255, 255, 255, 0.88);
}

.category3-hero-media .image-placeholder strong,
.category3-hero-media .image-placeholder br {
  display: none;
}

.category3-hero-media .image-placeholder {
  font-size: 0;
}

.category3-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.9) 0%, rgba(7, 17, 31, 0.7) 40%, rgba(7, 17, 31, 0.2) 74%, rgba(7, 17, 31, 0.08) 100%);
}

.category3-hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.category3-hero-banner .breadcrumbs,
.category3-hero-banner .breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}

.category3-hero-banner h1 {
  max-width: 760px;
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.12;
}

.category3-hero-points {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category3-hero-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.5;
}

.category3-hero-points li::before {
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border: 2px solid #38bdf8;
  border-radius: 50%;
  content: "";
}

.category3-showcase {
  padding: 10px 0 0;
}

.category3-showcase-grid {
  display: grid;
  grid-template-columns: 124px minmax(420px, 540px) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
}

.category3-gallery {
  display: grid;
  grid-template-columns: 124px minmax(420px, 540px);
  gap: 28px;
  align-items: start;
}

.category3-gallery-thumb {
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.category3-gallery-thumb .image-placeholder {
  min-height: 94px;
  border: 2px solid transparent;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.1)),
    #dbe3ec;
  color: #4b5e77;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.category3-gallery-thumb[aria-pressed="true"] .image-placeholder {
  border-color: #0ea5e9;
  transform: translateY(-2px);
}

.category3-gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.category3-gallery-main {
  position: relative;
}

.category3-gallery-slide .image-placeholder {
  min-height: 540px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(14, 116, 144, 0.08), rgba(37, 99, 235, 0.08)),
    #d7dee8;
  color: #314865;
}

.category3-model {
  display: inline-flex;
  margin-bottom: 18px;
  color: #081a2f;
  font-size: 18px;
  font-weight: 900;
}

.category3-showcase-copy h2 {
  max-width: 620px;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.18;
}

.category3-showcase-copy .check-list {
  margin: 0 0 34px;
  gap: 18px;
}

.category3-showcase-copy .check-list li {
  padding-left: 38px;
  color: #183250;
  font-size: 17px;
  line-height: 1.45;
}

.category3-showcase-copy .check-list li::before {
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: #1d71f2;
  content: "✓";
  font-size: 14px;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
}

.category3-showcase-copy .btn {
  min-width: 280px;
  justify-content: center;
  padding: 18px 28px;
  border-radius: 999px;
  background: #176df2;
  font-size: 17px;
  font-weight: 850;
}

/* Final layout override for Products Category3 showcase */
.category3-showcase-grid {
  grid-template-columns: 124px minmax(420px, 540px) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.category3-gallery-thumbs {
  grid-template-columns: 1fr;
  gap: 10px;
  align-self: stretch;
}

.category3-gallery-thumb {
  width: 124px;
  border-radius: 0;
}

.category3-gallery-thumb .image-placeholder {
  font-size: 0;
}

.category3-gallery-thumb .image-placeholder strong,
.category3-gallery-slide .image-placeholder strong {
  display: inline-block;
  font-size: 16px;
  color: #566b84;
}

.category3-gallery-thumb .image-placeholder br,
.category3-gallery-slide .image-placeholder br {
  display: none;
}

.category3-gallery-main {
  width: 100%;
}

.category3-gallery-slide .image-placeholder {
  font-size: 0;
}

.category3-showcase-copy h2 {
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.22;
}

.category3-showcase-copy .check-list li::before {
  content: "\\2713";
}

.category3-showcase-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.22;
}

.category3-showcase-copy .check-list li::before {
  content: "\2713";
}

/* Height and rhythm refinement for Products Category3 showcase */
.category3-showcase {
  padding: 0;
}

.category3-showcase-grid {
  grid-template-columns: 112px minmax(380px, 500px) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.category3-gallery-thumbs {
  gap: 8px;
  align-self: start;
}

.category3-gallery-thumb {
  width: 112px;
}

.category3-gallery-thumb .image-placeholder {
  min-height: 94px;
}

.category3-gallery-main {
  max-width: 500px;
  align-self: start;
}

.category3-gallery-slide .image-placeholder {
  min-height: 500px;
}

.category3-model {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 16px;
}

.category3-showcase-copy h2 {
  max-width: 520px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.18;
}

.category3-showcase-copy .check-list {
  margin-bottom: 28px;
  gap: 14px;
}

.category3-showcase-copy .check-list li {
  padding-left: 34px;
  font-size: 15px;
  line-height: 1.4;
}

.category3-showcase-copy .check-list li::before {
  top: 0;
  width: 20px;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
}

.category3-showcase-copy .btn {
  min-width: 250px;
  padding: 16px 24px;
  font-size: 16px;
}

.category3-info-banner {
  padding: 52px 0;
  background: #1e6de8;
}

.category3-info-inner {
  max-width: 980px;
}

.category3-info-inner h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.16;
}

.category3-info-inner p {
  max-width: 920px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
}

.category3-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.category3-read-more::before {
  content: "\\2713";
  font-size: 13px;
}

.category3-logic-products {
  background: #ffffff;
}

.category3-logic-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.category3-logic-tabs button {
  padding: 10px 18px;
  border: 1px solid #1e6de8;
  border-radius: 999px;
  color: #1e6de8;
  background: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.category3-logic-tabs button[aria-selected="true"] {
  color: #ffffff;
  background: #1e6de8;
}

.category3-logic-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.category3-logic-head h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 42px);
}

.category3-logic-head p {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.55;
}

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

.category3-product-card {
  border: 1px solid #e8edf3;
  background: #ffffff;
}

.category3-product-card .image-placeholder {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.08)),
    #dfe5ec;
  color: #65778f;
}

.category3-product-body {
  padding: 14px 10px 12px;
}

.category3-product-body h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.35;
}

.category3-product-body p {
  margin: 0 0 14px;
  color: #45566d;
  font-size: 11px;
  line-height: 1.5;
}

.category3-product-body .btn {
  width: 100%;
  justify-content: center;
  min-width: 0;
  padding: 10px 12px;
  border-width: 1px;
  border-radius: 0;
  color: #1e6de8;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.category3-content-blocks {
  background: #ffffff;
}

.category3-content-blocks .container {
  display: grid;
  gap: 36px;
}

.category3-content-block {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 52px;
}

.category3-content-copy {
  max-width: 560px;
}

.category3-content-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
}

.category3-content-copy p {
  margin: 0 0 14px;
  color: #344256;
  font-size: 14px;
  line-height: 1.6;
}

.category3-content-copy .btn {
  margin-top: 10px;
}

.category3-content-media {
  position: relative;
}

.category3-content-media .image-placeholder {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.08)),
    #dfe5ec;
  color: #65778f;
}

.category3-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #1e6de8;
  border-radius: 999px;
  color: #1e6de8;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  transform: translate(-50%, -50%);
}

.category3-centered-head {
  width: min(100%, 980px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.category3-centered-head p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.category3-comparison-module,
.category3-application-module {
  background: #ffffff;
}

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

.category3-comparison-card,
.category3-application-card {
  overflow: hidden;
  border: 1px solid #e8edf3;
  background: #ffffff;
}

.category3-comparison-card .image-placeholder,
.category3-application-card .image-placeholder {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.08)),
    #dfe5ec;
  color: #65778f;
}

.category3-comparison-body,
.category3-application-body {
  padding: 22px 22px 24px;
}

.category3-comparison-body .eyebrow {
  margin-bottom: 10px;
}

.category3-comparison-body h3,
.category3-application-body h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.28;
}

.category3-comparison-body p,
.category3-application-body p {
  margin: 0 0 12px;
  color: #344256;
  font-size: 14px;
  line-height: 1.65;
}

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

.category3-application-body .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.category3-resource-banner {
  position: relative;
  overflow: hidden;
  background: #f7fafc;
}

.category3-resource-bg {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  min-height: 320px;
}

.category3-resource-bg .image-placeholder {
  min-height: 320px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.04)),
    #d8e2ee;
  color: rgba(52, 66, 86, 0.72);
}

.category3-resource-shell {
  position: relative;
  z-index: 1;
  padding-top: 24px;
}

.category3-resource-shell .section-head {
  max-width: 920px;
  margin-bottom: 26px;
}

.category3-resource-shell .resource-grid article {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
}

.category3-about-tabs {
  background: #f7fafc;
}

.category3-about-tabs .section-head {
  margin-bottom: 26px;
}

.category3-about-tablist {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: #edf2f8;
}

.category3-about-tablist button {
  min-height: 70px;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #10203a;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.category3-about-tablist button[aria-selected="true"] {
  border-color: #2a71ff;
  color: #2a71ff;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(42, 113, 255, 0.12);
}

.category3-about-panel {
  padding-top: 36px;
}

.category3-about-copy {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.category3-about-copy h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

.category3-about-copy p {
  margin: 0 0 20px;
  color: #314156;
  font-size: 15px;
  line-height: 1.8;
}

.category3-related-products {
  background: #ffffff;
}

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

.category3-related-card .image-placeholder {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.08)),
    #dfe5ec;
  color: #65778f;
}

.category3-related-body {
  padding-top: 18px;
}

.category3-related-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.32;
}

.category3-related-body p {
  margin: 0 0 18px;
  color: #344256;
  font-size: 14px;
  line-height: 1.65;
}

.category3-related-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2a71ff;
  font-size: 14px;
  font-weight: 800;
}

.category3-related-link::after {
  content: "\2192";
  font-size: 15px;
}

.category3-testimonials {
  background: #ffffff;
}

.category3-testimonial-carousel {
  position: relative;
  padding: 10px 72px 0;
}

.category3-testimonial-track {
  min-height: 320px;
}

.category3-testimonial-slide {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.category3-testimonial-quote {
  margin: 0 0 44px;
  color: #27374d;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.75;
}

.category3-testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #d8e2ee, #9eb4d6);
  font-size: 22px;
  font-weight: 800;
}

.category3-testimonial-slide h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.category3-testimonial-slide span {
  display: block;
  color: #314156;
  font-size: 16px;
}

.category3-testimonial-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #8ca0bb;
  background: transparent;
  font-size: 56px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.category3-testimonial-arrow.prev {
  left: 0;
}

.category3-testimonial-arrow.next {
  right: 0;
}

.category3-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.category3-testimonial-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: #c9d3df;
  cursor: pointer;
}

.category3-testimonial-dots button[aria-pressed="true"] {
  width: 42px;
  background: #2a71ff;
}

.category3-product-body .btn.primary {
  color: #ffffff;
  background: #1e6de8;
}

.home1-brand-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.home1-brand-grid h2 {
  margin: 0;
  font-size: 29px;
}

.home1-brand-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
}

.home1-brand-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 72px;
  color: #9ca3af;
  font-size: 28px;
  font-weight: 850;
  opacity: 0.78;
  filter: grayscale(1);
}

.home1-brand-logos span::before {
  content: "";
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border: 7px solid currentColor;
  border-radius: 50%;
  opacity: 0.75;
}

.home1-brand-logos strong {
  font-weight: 900;
}

.home1-about-video {
  padding-top: 70px;
  background: #ffffff;
}

.home1-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.home1-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

.home1-video-card .image-placeholder {
  min-height: 440px;
  border: 0;
  border-radius: 24px;
  background:
    linear-gradient(0deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.25)),
    linear-gradient(135deg, #cbd5e1, #64748b);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid #116df4;
}

.home1-about-copy h2 {
  max-width: 620px;
  font-size: clamp(36px, 4.8vw, 58px);
}

.read-more-link {
  display: inline-flex;
  margin: 2px 0 22px;
  padding: 0;
  border: 0;
  color: #116df4;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.read-more-content[hidden] {
  display: none;
}

.home1-about-copy .btn {
  min-width: 260px;
  border-radius: 999px;
  background: #116df4;
}

.home1-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 64px;
  text-align: center;
}

.home1-stats-grid strong {
  display: block;
  color: #000000;
  font-size: 46px;
  line-height: 1;
}

.home1-stats-grid span {
  display: block;
  margin-top: 12px;
  color: #111827;
  font-size: 18px;
}

.home1-feature-band {
  color: #ffffff;
  background: #111827;
}

.home1-feature-band h2,
.home1-feature-band h3,
.home1-feature-band p,
.home1-feature-band .kicker {
  color: #ffffff;
}

.home1-feature-band .feature-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

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

.home1-process-grid article,
.home1-application-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.home1-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

.section.muted {
  background: var(--soft);
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 30px;
}

.section-head p {
  font-size: 17px;
}

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

.card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
}

.card-body {
  padding: 20px;
}

.card h3 a:hover {
  color: var(--brand);
}

.mini-list,
.check-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.mini-list li,
.check-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
  color: var(--muted-ink);
}

.mini-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.check-list.inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.check-list.inline li {
  margin: 0;
}

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

.feature-grid article {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

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

.resource-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.resource-grid h3 {
  margin-top: 16px;
}

.quote-form {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-status {
  min-height: 22px;
  margin: 8px 0 12px;
  color: var(--muted-ink);
  font-size: 13px;
}

.form-status[data-state="success"] {
  color: #047857;
}

.form-status[data-state="error"] {
  color: #b91c1c;
}

.quote-form label {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
}

.quote-form button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--brand);
  font-weight: 900;
  cursor: pointer;
}

.layout-with-sidebar,
.blog-layout,
.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.blog-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.sidebar,
.toc {
  position: sticky;
  top: 110px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sidebar a,
.toc a,
.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--muted-ink);
}

.sidebar a:hover,
.toc a:hover,
.site-footer a:hover {
  color: var(--brand);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--ink);
  background: #eef4f7;
}

.product-detail-hero {
  background: #fbfcfd;
}

.product-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
}

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

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.tabs a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--brand-dark);
  font-weight: 800;
}

.featured-post {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.article-hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.article-body {
  font-size: 18px;
}

.article-body .lead {
  font-size: 21px;
  color: #2f3a4c;
}

.article-body h2,
.article-body h3 {
  margin-top: 34px;
}

.toc {
  display: grid;
  gap: 8px;
}

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

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin: 14px 0 0;
}

.category-faq-wide .section-head {
  width: min(100%, 1120px);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 34px max(20px, calc((100vw - 1180px) / 2));
  border-radius: 0;
  background: var(--brand-dark);
  color: #ffffff;
}

.cta-band h2,
.cta-band p,
.cta-band .kicker {
  color: #ffffff;
}

.contact-grid {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.contact-panel dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  margin: 0 0 22px;
}

.contact-panel dt {
  color: var(--ink);
  font-weight: 900;
}

.contact-panel dd {
  margin: 0;
  color: var(--muted-ink);
}

.site-footer {
  padding: 54px 0 0;
  background: #111827;
  color: #d1d5db;
}

.site-footer h3 {
  color: #ffffff;
  font-size: 17px;
}

.site-footer p {
  color: #aeb7c4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand span {
  color: #ffffff;
}

.copyright {
  margin-top: 34px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ca3af;
  text-align: center;
  font-size: 14px;
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  z-index: 15;
}

.float-actions a,
.float-actions button {
  min-width: 68px;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--brand);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow);
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.inquiry-modal.open {
  display: flex;
}

.inquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, 0.72);
}

.inquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
}

.inquiry-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #aab3c2;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal-form {
  padding: 34px 30px 42px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(2, 6, 23, 0.35);
}

.modal-form h2 {
  margin-bottom: 18px;
  font-size: 25px;
}

.modal-form label {
  display: block;
  margin-bottom: 10px;
}

.modal-form label.has-error {
  margin-bottom: 12px;
}

.modal-form label span:not(.upload-icon) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 17px 20px;
  border: 0;
  border-radius: 8px;
  background: #f1f4f8;
  color: var(--ink);
  outline: 1px solid transparent;
}

.modal-form textarea {
  resize: vertical;
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline-color: #3b82f6;
  background: #ffffff;
}

.modal-form [aria-invalid="true"],
.quote-form [aria-invalid="true"] {
  outline-color: #ff4d5e;
}

.field-error {
  display: block;
  margin: 7px 0 0;
  color: #ff4d5e;
  font-size: 13px;
  line-height: 1.45;
}

.upload-control {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #1d6df2;
  border-radius: 999px;
  color: #0f172a;
  background: #ffffff;
  font-weight: 750;
  cursor: pointer;
}

.upload-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-control input {
  display: none;
}

.upload-icon {
  color: #1d6df2;
  font-size: 24px;
  line-height: 1;
}

.modal-form button[type="submit"] {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: #116df4;
  font-weight: 900;
  cursor: pointer;
}

.inquiry-form button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 20px 20px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav > ul {
    display: block;
  }

  .main-nav li ul,
  .main-nav li ul ul {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .hero-grid,
  .split,
  .split-section.reverse .split,
  .split.reverse,
  .contact-grid,
  .product-layout,
  .layout-with-sidebar,
  .blog-layout,
  .article-layout,
  .featured-post {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split > :first-child,
  .split.reverse > :first-child {
    order: 0;
  }

  .sidebar,
  .toc {
    position: static;
  }

  .card-grid,
  .feature-grid,
  .resource-grid,
  .category3-comparison-grid,
  .category3-application-grid,
  .category3-related-grid,
  .home1-benefits-grid,
  .home1-offer-grid,
  .home1-capacity-grid,
  .home1-why-grid,
  .home1-latest-grid,
  .home1-category-grid,
  .home1-process-grid,
  .home1-stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category3-about-tablist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 28px;
  }

  .category3-about-tablist button {
    min-height: 62px;
  }

  .category3-testimonial-carousel {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 680px) {
  .container,
  .nav-wrap {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    display: none;
  }

  .hero,
  .section {
    padding: 46px 0;
  }

  .cta-band {
    padding: 28px 20px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .card-grid,
  .feature-grid,
  .resource-grid,
  .category3-comparison-grid,
  .category3-application-grid,
  .category3-related-grid,
  .home1-benefits-grid,
  .home1-offer-grid,
  .home1-capacity-grid,
  .home1-why-grid,
  .home1-latest-grid,
  .home1-category-grid,
  .home1-process-grid,
  .home1-stats-grid,
  .footer-grid,
  .thumbs {
    grid-template-columns: 1fr;
  }

  .home1-benefits article,
  .home1-brand-grid,
  .home1-about-grid,
  .home1-offer-head,
  .home1-application-layout,
  .home1-business-layout,
  .home1-faq-layout,
  .home1-capacity-head {
    grid-template-columns: 1fr;
  }

  .category3-about-tablist {
    grid-template-columns: 1fr;
    padding: 8px;
    border-radius: 20px;
  }

  .category3-about-copy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .category3-testimonial-carousel {
    padding-left: 22px;
    padding-right: 22px;
  }

  .category3-testimonial-track {
    min-height: auto;
  }

  .category3-testimonial-quote {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
  }

  .category3-testimonial-arrow {
    width: 34px;
    height: 34px;
    font-size: 40px;
  }

  .category3-hero-banner {
    min-height: 520px;
  }

  .category3-showcase-grid {
    grid-template-columns: 1fr;
  }

  .category3-hero-content {
    padding: 72px 0;
  }

  .category3-hero-banner h1 {
    font-size: 32px;
  }

  .category3-hero-points li {
    font-size: 15px;
  }

  .category3-gallery {
    grid-template-columns: 1fr;
  }

  .category3-gallery-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .category3-gallery-thumb {
    width: 100%;
  }

  .category3-gallery-slide .image-placeholder {
    min-height: 360px;
  }

  .category3-showcase-copy h2 {
    max-width: none;
    font-size: 28px;
  }

  .category3-showcase-copy .check-list li {
    font-size: 14px;
  }

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

  .home1-business-copy {
    position: static;
  }

  .home1-brand-logos {
    flex-wrap: wrap;
  }

  .home1-tabs {
    justify-content: flex-start;
  }

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

  .home1-business-copy h2 {
    font-size: 30px;
  }

  .home1-business-copy p {
    font-size: 16px;
  }

  .home1-process-step summary {
    grid-template-columns: 50px 1fr 28px;
    gap: 14px;
    min-height: 72px;
  }

  .home1-process-number {
    width: 42px;
    height: 42px;
  }

  .home1-process-timeline::before {
    left: 27px;
  }

  .home1-process-title {
    font-size: 19px;
  }

  .home1-process-step p {
    margin: -4px 0 22px 64px;
    font-size: 15px;
  }

  .home1-faq-copy h2 {
    font-size: 30px;
  }

  .home1-faq-copy p {
    margin-top: 24px;
    font-size: 16px;
  }

  .home1-faq-accent {
    width: 150px;
    margin: 30px 0 34px;
  }

  .home1-faq-copy .image-placeholder {
    min-height: 380px;
  }

  .home1-faq-item summary {
    grid-template-columns: 46px 1fr 26px;
    gap: 14px;
    min-height: 78px;
  }

  .home1-faq-number {
    font-size: 23px;
  }

  .home1-faq-question {
    font-size: 17px;
  }

  .home1-faq-item p {
    margin: -6px 0 24px 60px;
    font-size: 14px;
  }

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

  .home1-latest-head h2 {
    font-size: 30px;
  }

  .home1-news-body h3 {
    font-size: 20px;
  }

  .hero-actions,
  .tabs,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .category3-logic-tabs {
    flex-wrap: wrap;
  }

  .category3-product-grid {
    grid-template-columns: 1fr;
  }

  .float-actions {
    left: 14px;
    right: 14px;
    grid-template-columns: repeat(3, 1fr);
  }
}
