/* =========================================
   TecCera — Phase 1 homepage styles
   Palette: deep navy + industrial teal
   ========================================= */

:root {
  --navy: #0b2340;
  --navy-deep: #07182c;
  --navy-mid: #123056;
  --teal: #1aa89a;
  --teal-dark: #12897e;
  --text: #2a3140;
  --text-muted: #5d6775;
  --line: #dce3ea;
  --white: #ffffff;
  --surface: #f4f6f8;
  --header-h: 78px;
  --font-sans: Arial, Helvetica, sans-serif;
  --content-max: 1440px;
  --content-gutter: 32px;
  --section-y: 72px;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  max-width: 100%;
}

/* Full-bleed sections + limited inner rail (overrides Bootstrap 1140px container) */
.container {
  width: calc(100% - (var(--content-gutter) * 2));
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.hero-banner,
.about-section,
.products-section,
.products-manufacturing,
.resources-section,
.contact-section,
.site-header,
.site-footer {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 1199.98px) {
  :root {
    --content-gutter: 24px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --content-gutter: 20px;
    --section-y: 56px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --content-gutter: 16px;
    --section-y: 48px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  overflow-wrap: break-word;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.25;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}

p {
  line-height: 1.65;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.375rem;
  }
}

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

  h2 {
    font-size: 1.625rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .about-text h2 {
    font-size: 1.375rem;
  }

  .about-text h3 {
    font-size: 1.1875rem;
  }

  .cap-step-title {
    font-size: 1.25rem;
  }
}

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

a:hover,
a:focus {
  text-decoration: none;
}

/* ---------- Header / Navigation ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}

.site-navbar {
  padding: 0.85rem 0;
  background: rgba(7, 24, 44, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled .site-navbar,
.site-header.is-open .site-navbar {
  background: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(7, 24, 44, 0.28);
}

.brand-logo {
  height: 50px;
  width: auto;
}

.navbar-dark .navbar-nav > .nav-item > .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.55rem 0.7rem;
  position: relative;
}

.navbar-dark .navbar-nav > .nav-item > .nav-link:hover,
.navbar-dark .navbar-nav > .nav-item.active > .nav-link {
  color: var(--white);
}

.navbar-dark .navbar-nav > .nav-item > .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.navbar-dark .navbar-nav > .nav-item > .nav-link:hover::after,
.navbar-dark .navbar-nav > .nav-item.active > .nav-link::after {
  transform: scaleX(1);
}

.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
  padding: 0.35rem 0.5rem;
}

.navbar-dark .navbar-toggler:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav > .nav-item > .nav-link {
    padding: 0.75rem 0;
  }

  .navbar-dark .navbar-nav > .nav-item > .nav-link::after {
    display: none;
  }

  .navbar-collapse {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.75rem;
  }
}

.nav-item-products {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.nav-products-toggle,
.nav-products-child-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  line-height: 1;
}

.nav-products-toggle {
  margin-left: -0.15rem;
}

.nav-products-toggle:hover,
.nav-products-child-toggle:hover {
  color: var(--teal);
}

.nav-products-toggle:focus-visible,
.nav-products-child-toggle:focus-visible,
.nav-products-row > a:focus-visible,
.nav-products-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.nav-products-toggle:focus:not(:focus-visible),
.nav-products-child-toggle:focus:not(:focus-visible),
.nav-products-row > a:focus:not(:focus-visible) {
  outline: none;
}

.nav-item-products.is-open > .nav-products-toggle svg,
.nav-products-item.is-open > .nav-products-row > .nav-products-child-toggle svg {
  transform: rotate(180deg);
}

.nav-products-menu,
.nav-products-sub {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-products-menu {
  display: none;
  z-index: 1040;
}

.nav-item-products.is-open > .nav-products-menu {
  display: block;
}

.nav-products-item {
  position: relative;
  margin: 0;
}

.nav-products-row {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.nav-products-row > a {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.42rem 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.nav-products-row > a:hover,
.nav-products-row > a:focus-visible,
.nav-products-item.is-current > .nav-products-row > a {
  color: var(--teal);
}

.nav-products-child-toggle {
  flex: 0 0 1.75rem;
  width: 1.75rem;
  align-self: stretch;
  height: auto;
  color: rgba(255, 255, 255, 0.72);
}

.nav-products-sub {
  display: none;
}

.nav-products-item.is-open > .nav-products-sub {
  display: block;
}

@media (min-width: 992px) {
  .site-navbar .navbar-collapse,
  .site-navbar .navbar-nav {
    overflow: visible;
  }

  .nav-products-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    max-width: min(250px, calc(100dvw - 24px));
    max-height: calc(100vh - 120px);
    overflow-x: visible;
    overflow-y: auto;
    box-shadow: 0 12px 28px rgba(7, 24, 44, 0.35);
  }

  .nav-products-menu.is-align-end {
    left: auto;
    right: 0;
  }

  .nav-item-products:hover > .nav-products-menu,
  .nav-item-products:focus-within > .nav-products-menu,
  .nav-item-products.is-open > .nav-products-menu {
    display: block;
  }

  .nav-item-products.is-dismissed > .nav-products-menu {
    display: none;
  }

  .nav-products-all {
    display: none;
  }

  .nav-products-item.has-children > .nav-products-sub {
    position: absolute;
    left: 100%;
    top: 0;
    width: 250px;
    max-width: min(250px, calc(100dvw - 24px));
    max-height: calc(100vh - 120px);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1041;
    box-shadow: 0 12px 28px rgba(7, 24, 44, 0.35);
  }

  .nav-products-item.has-children.is-flyout-start > .nav-products-sub {
    left: auto;
    right: 100%;
  }

  .nav-products-item.has-children:hover > .nav-products-sub,
  .nav-products-item.has-children:focus-within > .nav-products-sub,
  .nav-products-item.has-children.is-open > .nav-products-sub {
    display: block;
  }

  .nav-products-item.has-children.is-sub-dismissed > .nav-products-sub {
    display: none;
  }

  .nav-products-child-toggle svg {
    transform: rotate(-90deg);
  }

  .nav-products-item.is-open > .nav-products-row > .nav-products-child-toggle svg,
  .nav-products-item.has-children:hover > .nav-products-row > .nav-products-child-toggle svg,
  .nav-products-item.has-children:focus-within > .nav-products-row > .nav-products-child-toggle svg {
    transform: rotate(-90deg);
  }
}

@media (max-width: 991.98px) {
  .nav-item-products {
    width: 100%;
  }

  .nav-item-products > .nav-products-link {
    flex: 1;
  }

  .nav-products-menu {
    flex-basis: 100%;
    width: 100%;
    margin: 0.2rem 0 0.35rem;
    max-height: none;
    background: rgba(7, 24, 44, 0.45);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .nav-products-all {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-products-sub {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0 0 0.25rem 0.85rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-products-sub .nav-products-row > a {
    padding-left: 0.85rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.72);
  }
}

/* ---------- Hero Banner ---------- */

.hero-banner {
  position: relative;
  min-height: 620px;
  height: clamp(620px, 68vh, 700px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #e8ecef;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: 82% 46%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Soft light wash on the left only — keeps title readable without hiding the photo */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.42) 32%,
    rgba(255, 255, 255, 0.08) 58%,
    rgba(255, 255, 255, 0) 74%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.hero-copy {
  max-width: 720px;
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 1rem;
  color: var(--navy);
}

@media (min-width: 768px) {
  .hero-title-break {
    display: block;
  }
}

.hero-subtitle {
  margin: 0 0 2rem;
  color: var(--navy-mid);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions .btn {
  min-width: 168px;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0;
}

.btn-hero-primary {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: var(--white);
}

.btn-hero-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.btn-hero-outline {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}

.btn-hero-outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

@media (max-width: 767.98px) {
  .hero-banner {
    height: auto;
    min-height: 520px;
  }

  .hero-bg {
    background-size: cover;
    background-position: 72% 42%;
    background-repeat: no-repeat;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.55) 38%,
      rgba(255, 255, 255, 0.18) 70%,
      rgba(255, 255, 255, 0.04) 100%
    );
  }

  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 1.5rem;
  }

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

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions .btn {
    min-width: 0;
    width: 100%;
    margin-right: 0;
  }
}

/* ---------- About TecCera ---------- */

.about-section {
  padding: var(--section-y) 0;
  background: var(--white);
}

@media (min-width: 992px) {
  .about-section > .container > .row.align-items-center {
    display: grid;
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    column-gap: 48px;
    row-gap: 0;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .about-section > .container > .row.align-items-center > [class*="col-"] {
    flex: none;
    max-width: none;
    width: auto;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
}

.about-media {
  position: relative;
  padding-left: 1.5rem;
}

.about-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 40px rgba(11, 35, 64, 0.14);
}

.about-accent {
  position: absolute;
  left: 0;
  top: 1.75rem;
  bottom: 1.75rem;
  width: 10px;
  background: var(--teal);
}

.section-kicker {
  margin: 0 0 0.45rem;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 0.55rem;
  color: var(--navy);
}

.section-lead {
  margin: 0 0 1.35rem;
  color: var(--navy-mid);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
}

.about-text {
  margin: 0 0 1rem;
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.about-text h2 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.about-text h3 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.about-text p,
.about-text li {
  font-size: 1rem;
  line-height: 1.65;
}

.blog-quote-cta {
  margin: 2rem 0 0;
  max-width: 38em;
}

.blog-quote-cta .btn-hero-primary {
  display: inline-block;
  text-decoration: none;
}

.component-types-section {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.tech-specs-section {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.tech-specs-section .section-heading {
  margin-bottom: 1.35rem;
}

.tech-specs-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tech-specs-table {
  width: 100%;
  min-width: 520px;
  margin: 0;
  border-collapse: collapse;
  background: var(--white);
}

.tech-specs-table th,
.tech-specs-table td {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.tech-specs-table thead th {
  background: var(--surface);
  color: var(--navy);
  font-weight: 600;
}

.tech-specs-table tbody th {
  width: 32%;
  color: var(--navy);
  font-weight: 600;
  background: #fbfcfd;
}

.tech-specs-table tbody td {
  color: var(--text);
}

.tech-specs-cards {
  display: grid;
  gap: 0.85rem;
}

.tech-specs-card {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.tech-specs-card-parameter {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
}

.tech-specs-card-list {
  margin: 0;
}

.tech-specs-card-item {
  display: grid;
  gap: 0.2rem;
  margin: 0 0 0.7rem;
}

.tech-specs-card-item:last-child {
  margin-bottom: 0;
}

.tech-specs-card-item dt {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tech-specs-card-item dd {
  margin: 0;
  color: var(--text);
  font-size: 0.975rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.component-types-section .section-heading {
  margin-bottom: 1.5rem;
}

.component-type-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.component-type-media {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: var(--surface);
  overflow: hidden;
}

.component-type-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.component-type-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.2rem 1.25rem 1.35rem;
}

.component-type-title {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}

.component-type-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.product-long-description-section {
  margin-top: 2.75rem;
  padding-top: 2rem;
}

.product-long-description-section .section-heading {
  margin-bottom: 28px;
}

.product-long-description-section .section-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.product-long-description {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  overflow-wrap: break-word;
}

.product-long-description > *:first-child {
  margin-top: 0;
}

.product-long-description p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.product-long-description p:last-child {
  margin-bottom: 0;
}

.product-long-description h2 {
  margin: 40px 0 16px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.product-long-description > h2:first-child {
  margin-top: 0;
}

.product-long-description h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
}

.product-long-description h3 + p {
  margin-top: 0;
}

.product-long-description ul,
.product-long-description ol {
  display: block;
  margin: 0 0 16px;
  padding-left: 1.5em;
  list-style-position: outside;
}

.product-long-description ul {
  list-style-type: disc;
}

.product-long-description ol {
  list-style-type: decimal;
}

.product-long-description li {
  display: list-item;
  width: auto;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.product-long-description li:last-child {
  margin-bottom: 0;
}

.product-long-description ul ul,
.product-long-description ol ol,
.product-long-description ul ol,
.product-long-description ol ul {
  margin: 8px 0 0;
}

.product-long-description .product-long-description-table-wrap {
  width: 100%;
  margin: 0 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-long-description table {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border-collapse: collapse;
  background: var(--white);
}

.product-long-description th,
.product-long-description td {
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.875rem;
  line-height: 1.45;
  white-space: nowrap;
}

.product-long-description thead th {
  background: var(--surface);
  color: var(--navy);
  font-weight: 600;
}

.product-long-description tbody td {
  color: var(--text);
}

.product-long-description table.is-compact {
  min-width: 0;
  width: auto;
}

@media (max-width: 767px) {
  .product-long-description-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-long-description-section .section-title {
    font-size: 28px;
  }

  .product-long-description h2 {
    font-size: 24px;
  }

  .product-long-description h3 {
    font-size: 18px;
  }

  .product-long-description,
  .product-long-description p,
  .product-long-description li {
    font-size: 16px;
    line-height: 1.7;
  }

  .product-long-description,
  .product-long-description a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

.about-actions {
  margin: 0 0 1.35rem;
}

.about-actions .btn {
  min-width: 168px;
  padding: 0.65rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0;
}

.about-stats {
  display: flex;
  align-items: flex-start;
  margin: 0.15rem 0 0;
  max-width: 38em;
}

.about-stat {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 0.9rem 0 0;
}

.about-stat + .about-stat {
  padding-left: 0.9rem;
  border-left: 1px solid var(--line);
}

.about-stat-value {
  display: block;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-stat-label {
  display: block;
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  .about-section {
    padding: var(--section-y) 0;
  }

  .about-photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 575.98px) {
  .about-photo {
    height: 260px;
  }

  .about-stat {
    padding-right: 0.5rem;
  }

  .about-stat + .about-stat {
    padding-left: 0.55rem;
  }

  .about-stat-value {
    font-size: 2.25rem;
  }
}

/* About — Partners logo strip */
.about-partners {
  margin-top: 2rem;
  margin-bottom: 0;
  padding-top: 0;
  border-top: none;
}

.about-partners-kicker {
  margin: 0 0 0.8rem;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.partners-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.partners-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.partners-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.partners-slide {
  flex: 0 0 20%;
  padding: 0 0.5rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  margin: 0;
  padding: 0.35rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.partner-logo img {
  display: block;
  max-width: min(160px, 100%);
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.partner-logo.is-badge img {
  max-width: 48px;
  max-height: 40px;
}

.partner-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  color: var(--navy-mid);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.3;
}

.partner-logo.is-fallback img {
  display: none;
}

.partner-logo.is-fallback .partner-fallback {
  display: flex;
}

.partners-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-mid);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.partners-nav:hover,
.partners-nav:focus {
  border-color: var(--teal);
  color: var(--teal-dark);
  outline: none;
}

@media (max-width: 991.98px) {
  .partners-slide {
    flex: 0 0 25%;
  }
}

@media (max-width: 767.98px) {
  .about-partners {
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding-top: 0;
  }

  .partners-slide {
    flex: 0 0 50%;
  }

  .partner-logo {
    height: 56px;
    padding: 0.3rem 0.55rem;
  }

  .partner-logo img {
    max-width: 75%;
    max-height: 32px;
  }

  .partner-logo.is-badge img {
    max-width: 36px;
    max-height: 32px;
  }
}

/* Shared in-page section offset for the fixed header */
#about,
#products,
#resources,
#capabilities,
#contact {
  scroll-margin-top: 80px;
}

.section-heading {
  margin-bottom: 2.75rem;
}

.section-heading.text-center .section-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/* ---------- Featured Products ---------- */

.products-section {
  padding: var(--section-y) 0 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 48, 86, 0.16);
  box-shadow: 0 16px 32px rgba(11, 35, 64, 0.1);
}

.product-card-media {
  position: relative;
  overflow: hidden;
  background: #e8edf2;
}

.product-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.2rem 0.55rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}

.product-badge--custom {
  background: var(--teal);
}

.product-card .card-body {
  padding: 1.35rem 1.4rem 1.45rem;
}

.product-card-title {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}

.product-card-text {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.card-more {
  color: var(--teal-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-more:hover {
  color: var(--navy);
}

.featured-category-grid {
  margin-bottom: 0.5rem;
}

.featured-category-grid > [class*="col-"] {
  display: flex;
}

.featured-category-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.featured-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 48, 86, 0.16);
  box-shadow: 0 16px 32px rgba(11, 35, 64, 0.1);
  color: inherit;
  text-decoration: none;
}

.featured-category-media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: auto;
  aspect-ratio: 16 / 10;
  padding: 0.85rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.featured-category-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.featured-category-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.45rem;
}

.featured-category-title {
  margin: 0 0 0.85rem;
  min-height: 2.7em;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}

.featured-category-actions {
  margin-top: 1.75rem;
  padding-bottom: 1rem;
}

.featured-category-all {
  min-width: 200px;
}

/* Products — Manufacturing Capabilities */
.products-manufacturing {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.products-manufacturing .container {
  max-width: var(--content-max);
  height: auto;
  min-height: 0;
  margin-bottom: 0;
}

.products-manufacturing-heading {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.products-manufacturing-heading .section-title {
  margin-bottom: 0.7rem;
  font-size: 44px;
  line-height: 1.2;
  color: var(--navy);
}

.products-manufacturing-heading .section-lead {
  margin-bottom: 0.85rem;
  color: var(--navy-mid);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.5;
}

.products-manufacturing-text {
  margin: 0 auto;
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.process-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.process-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8edf2;
}

.process-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.15rem 1.2rem 1.3rem;
}

.process-card-title {
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}

.process-card-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.products-manufacturing-cta {
  margin-top: 2.25rem;
}

@media (max-width: 991.98px) {
  .products-section {
    padding: var(--section-y) 0 0;
  }

  .product-card-media img {
    height: 200px;
  }

  .products-manufacturing {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .products-manufacturing-heading .section-title {
    font-size: 32px;
  }

  .products-manufacturing-heading .section-lead {
    font-size: 1.0625rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

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

/* ---------- Resources ---------- */

.resources-section {
  padding: var(--section-y) 0;
  background: var(--white);
}

.resource-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.resource-category {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-title {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}

.resource-excerpt {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.resource-link {
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.resource-link:hover {
  color: var(--navy);
}

/* ---------- Capabilities ---------- */

.capabilities-section {
  padding: 6rem 0 4.5rem;
  background: var(--navy);
  color: var(--white);
}

.capabilities-section .section-kicker {
  color: var(--teal);
}

.capabilities-section .section-title,
.capabilities-section .section-lead {
  color: var(--white);
}

.capabilities-section .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.capabilities-intro {
  max-width: 40em;
  margin: -0.75rem auto 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

/* Process flow indicator */
.cap-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 2.75rem;
  padding: 0;
  list-style: none;
}

.cap-flow-step {
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cap-flow-step span {
  color: var(--teal);
  margin-right: 0.35rem;
}

.cap-flow-step.is-active {
  background: rgba(26, 168, 154, 0.12);
  border-color: rgba(26, 168, 154, 0.35);
  color: var(--white);
}

/* Process blocks */
.cap-block {
  margin-bottom: 2.5rem;
}

.cap-block--forming {
  margin-bottom: 2.5rem;
}

.cap-block-header {
  margin-bottom: 1.25rem;
  max-width: 640px;
}

.cap-block-header .cap-step-title {
  margin-bottom: 0.45rem;
}

.cap-block-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.cap-step-num {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.cap-step-title {
  margin: 0 0 0.65rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.cap-copy p,
.cap-card-body p,
.cap-inspection p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Photo containers */
.cap-media {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.cap-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.cap-media--primary .cap-photo {
  height: 320px;
}

.cap-media-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.65rem 0.45rem 0.45rem;
  background: rgba(7, 24, 44, 0.88);
  border-left: 2px solid var(--teal);
}

.cap-photo-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
}

.cap-media-badge span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Forming cards */
.cap-card {
  background: rgba(255, 255, 255, 0.04);
  border-top: 2px solid var(--teal);
  overflow: hidden;
}

.cap-card-media {
  overflow: hidden;
}

.cap-card-media .cap-photo {
  height: 220px;
  transition: transform 0.4s ease;
}

.cap-card:hover .cap-photo {
  transform: scale(1.03);
}

.cap-card-body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.cap-card-body h4 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.cap-equipment {
  margin: 0 0 0.55rem !important;
  color: var(--teal) !important;
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Inspection (text-only step) */
.cap-block--inspection {
  margin-bottom: 0;
}

.cap-inspection {
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--teal);
  max-width: 640px;
}

@media (max-width: 991.98px) {
  .capabilities-section {
    padding: 4rem 0 3rem;
  }

  .cap-photo {
    height: 240px;
  }

  .cap-media--primary .cap-photo {
    height: 260px;
  }

  .cap-card-media .cap-photo {
    height: 200px;
  }

  .cap-flow-step {
    font-size: 0.68rem;
    padding: 0.4rem 0.65rem;
  }
}

@media (max-width: 575.98px) {
  .cap-flow {
    gap: 0.3rem;
  }

  .cap-flow-step {
    flex: 1 1 calc(50% - 0.3rem);
    text-align: center;
    white-space: normal;
    font-size: 0.65rem;
  }

  .cap-photo {
    height: 200px;
  }

  .cap-media--primary .cap-photo {
    height: 220px;
  }

  .cap-media-badge {
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  }

  .cap-photo-thumb {
    width: 44px;
    height: 44px;
  }

  .cap-media-badge span {
    font-size: 0.65rem;
  }
}

/* ---------- Contact Us ---------- */

.contact-section {
  padding: var(--section-y) 0;
  background: var(--surface);
}

.contact-direct {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-direct p {
  margin: 0 0 1rem;
}

.contact-company {
  margin-bottom: 1.05rem !important;
  color: var(--navy);
}

.contact-address {
  margin: 0.45rem 0 0;
  font-style: normal;
  line-height: 1.65;
}

.contact-direct a {
  color: var(--teal-dark);
  font-weight: 600;
}

.contact-direct a:hover {
  color: var(--navy);
}

.contact-whatsapp-note {
  margin: 0.35rem 0 1.2rem !important;
  font-size: 0.78rem;
  font-weight: 400;
  color: #8a93a0;
}

.contact-form-wrap {
  position: relative;
  max-width: 92%;
  padding: 1.45rem 1.75rem;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(11, 35, 64, 0.07);
}

.teccera-inquiry-hp {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;
}

.inquiry-form-feedback {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  border: 1px solid var(--line);
}

.inquiry-form-feedback.is-success {
  color: var(--navy);
  background: rgba(26, 168, 154, 0.08);
  border-color: rgba(26, 168, 154, 0.35);
}

.inquiry-form-feedback.is-error {
  color: #8f2f2f;
  background: #fff5f5;
  border-color: #e8b4b4;
}

.btn-inquiry:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.contact-form .form-group {
  margin-bottom: 0.72rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
}

.contact-form .req {
  color: var(--teal);
}

.contact-form .form-control {
  border-radius: 0;
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.6rem 0.85rem;
  color: var(--text);
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 168, 154, 0.12);
}

.btn-inquiry {
  display: inline-block;
  width: 100%;
  padding: 0.7rem 1.75rem;
  margin-top: 0.15rem;
  background: var(--teal);
  border: 1px solid var(--teal);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.btn-inquiry:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26, 168, 154, 0.3);
}

@media (max-width: 991.98px) {
  .contact-section {
    padding: var(--section-y) 0;
  }

  .contact-form-wrap {
    padding: 1.25rem 1.25rem;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  padding: var(--section-y) 0 0;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  margin: 0;
  max-width: 300px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 1rem 0 0;
}

.footer-social a {
  display: inline-flex;
  color: #ffffff;
  line-height: 0;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-heading {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--teal);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--teal);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
  letter-spacing: 0;
}

/* ---------- About Page (standalone template) ---------- */

.about-page {
  padding: 6rem 0;
  background: var(--white);
}

.about-page-media {
  position: relative;
  padding-left: 1.5rem;
}

.about-page-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(11, 35, 64, 0.14);
}

.about-page-accent {
  position: absolute;
  left: 0;
  top: 1.75rem;
  bottom: 1.75rem;
  width: 10px;
  background: var(--teal);
}

.about-page-header {
  margin-bottom: 0.35rem;
}

.about-page .about-page-header .section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
}

.about-page-body {
  max-width: none;
}

.about-page-body h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.about-page-body h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

.about-page-body p,
.about-page-body li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.about-page-body > :first-child {
  margin-top: 0;
}

.about-page-body > :last-child {
  margin-bottom: 0;
}

.about-page-body a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.about-page-body a:hover {
  color: var(--navy);
}

.about-page-body img {
  max-width: 100%;
  height: auto;
}

.about-page-body ul,
.about-page-body ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.about-page-body blockquote {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--teal);
  background: var(--surface);
  color: var(--navy-mid);
}

.about-page-pagination {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.about-page-pagination-label {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.about-page-pagination .page-numbers {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  color: var(--navy-mid);
  font-size: 0.875rem;
  text-decoration: none;
}

.about-page-pagination .page-numbers.current,
.about-page-pagination .page-numbers:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

@media (max-width: 767.98px) {
  .about-page .about-page-header .section-title {
    font-size: 32px;
  }

  .about-page-body h2 {
    font-size: 26px;
  }

  .about-page-body p,
  .about-page-body li {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 991.98px) {
  .about-page {
    padding: 4rem 0;
  }

  .about-page-photo {
    height: 340px;
  }
}

@media (max-width: 575.98px) {
  .about-page-photo {
    height: 260px;
  }
}

/* ---------- Products Landing Page (/products/) ---------- */

.products-landing {
  background: var(--white);
}

.products-landing-hero {
  padding: 3.5rem 0 2.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.products-landing-lead {
  max-width: 46rem;
  margin: 0;
}

.products-landing-categories {
  padding: 3.5rem 0 1rem;
}

.products-landing-category-card,
.products-landing-product-card {
  height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.products-landing-category-card:hover,
.products-landing-product-card:hover {
  border-color: rgba(18, 48, 86, 0.16);
  box-shadow: 0 12px 28px rgba(11, 35, 64, 0.08);
}

.products-landing-category-link,
.products-landing-product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.products-landing-category-link:hover,
.products-landing-category-link:focus,
.products-landing-product-link:hover,
.products-landing-product-link:focus {
  color: inherit;
  text-decoration: none;
}

.products-landing-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  width: 100%;
  padding: 1rem;
  background: #eef2f6;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.products-landing-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.products-landing-category-body,
.products-landing-product-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.4rem;
}

.products-landing-category-title {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}

.products-landing-category-text {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  flex: 1 1 auto;
}

.products-landing-category-btn {
  align-self: flex-start;
  margin-top: auto;
  pointer-events: none;
}

.products-landing-previews {
  padding: 1rem 0 2rem;
  border-top: 1px solid var(--line);
}

.products-landing-preview-block {
  margin-bottom: 2.5rem;
}

.products-landing-preview-block:last-child {
  margin-bottom: 0;
}

.products-landing-preview-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.products-landing-preview-title {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.products-landing-product-title {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
}

.products-landing-product-body .card-more {
  margin-top: auto;
}

.products-landing-empty {
  margin: 0;
  color: var(--text-muted);
}

.products-landing-cta {
  padding: 1rem 0 4rem;
}

.products-landing-cta-panel {
  padding: 2.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.products-landing-cta-lead {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

@media (max-width: 767.98px) {
  .products-landing-hero {
    padding: 2.75rem 0 2rem;
  }

  .products-landing-preview-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* WhatsApp floating button — mobile only */
.teccera-whatsapp-float {
  display: none;
  text-decoration: none;
}

@media (max-width: 767px) {
  .teccera-whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    text-decoration: none;
  }

  .teccera-whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block;
  }

  .teccera-whatsapp-float:hover {
    background-color: #1ebe57;
    color: #ffffff;
    text-decoration: none;
  }

  .teccera-whatsapp-float:focus-visible {
    outline: 3px solid #128C7E;
    outline-offset: 3px;
  }

  .teccera-whatsapp-float:active {
    transform: scale(0.96);
  }
}

@media print {
  .teccera-whatsapp-float {
    display: none !important;
  }
}

