:root {
  --color-primary: #17384f;
  --color-primary-dark: #102b3d;
  --color-secondary: #1769aa;
  --color-accent: #16a6a0;

  --color-text: #344b5b;
  --color-text-muted: #71818d;

  --color-light: #f5f8fa;
  --color-light-blue: #eef5f8;
  --color-white: #ffffff;
  --color-border: #dfe8ed;

  --shadow-sm: 0 8px 25px rgba(17, 45, 63, 0.06);
  --shadow-md: 0 18px 45px rgba(17, 45, 63, 0.10);

  --radius-md: 10px;
  --radius-lg: 16px;

  --container: 1200px;
}



/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================
   GLOBAL
========================= */

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

section {
  position: relative;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-eyebrow,
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.section-heading h2 {
  margin: 0 0 18px;
  color: var(--color-primary);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.8px;
}

.section-heading h2 span {
  color: var(--color-secondary);
}

.section-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.8;
}


/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-secondary);
  color: #ffffff;
}

.btn-primary:hover {
  background: #12598f;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(23, 56, 79, 0.2);
  color: var(--color-primary);
}

.btn-secondary:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}


/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(223, 232, 237, 0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--color-secondary);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  flex-shrink: 0;
}


/* =========================
   HERO
========================= */

.hero {
  overflow: hidden;
  padding: 92px 0 80px;
  background:
    linear-gradient(
      135deg,
      #f7fafb 0%,
      #eef5f8 100%
    );
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 670px;
}

.hero h1 {
  margin: 0 0 24px;
  color: var(--color-primary);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -3px;
}

.hero h1 span {
  display: block;
  color: var(--color-secondary);
}

.hero-content > p {
  max-width: 620px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 20px;
  background: #dfe9ee;
  box-shadow: var(--shadow-md);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-trust strong {
  color: var(--color-primary);
  font-size: 15px;
}

.hero-trust span {
  color: var(--color-text-muted);
  font-size: 12px;
}


/* =========================
   TRUST STRIP
========================= */

.trust-strip {
  border-bottom: 1px solid var(--color-border);
  background: #ffffff;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip-inner > div {
  min-height: 115px;
  padding: 28px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--color-border);
}

.trust-strip-inner > div:first-child {
  border-left: 1px solid var(--color-border);
}

.trust-strip strong {
  margin-bottom: 5px;
  color: var(--color-primary);
  font-size: 14px;
}

.trust-strip span {
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.55;
}


/* =========================
   PRODUCTS
========================= */

.products-overview {
  padding: 110px 0;
  background: var(--color-light);
}

.products-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  min-width: 0;
  min-height: 280px;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-card:hover {
  border-color: rgba(23, 105, 170, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card-featured {
  grid-column: 1;
  grid-row: 1 / 4;
  min-height: 860px;
  flex-direction: column;
}

.product-card:not(.product-card-featured) {
  grid-column: 2;
}

.product-card-content {
  width: 100%;
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 26px;
  line-height: 1.2;
}

.product-card p {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-link {
  margin-top: auto;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 800;
}

.product-card-featured .product-card-content {
  flex: 0 0 auto;
  padding: 40px 44px 30px;
}

.product-card-image {
  width: 100%;
  flex: 1;
  min-height: 360px;
  overflow: hidden;
  background: #edf3f5;
}

.product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* =========================
   WHY US
========================= */

.why-us {
  padding: 110px 0;
  background: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.why-us-item {
  min-height: 290px;
  padding: 34px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.why-us-number {
  display: block;
  margin-bottom: 40px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
}

.why-us-item h3 {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1.3;
}

.why-us-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.75;
}


/* =========================
   INDUSTRIES
========================= */

.industries {
  padding: 110px 0;
  background: var(--color-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-card {
  min-height: 205px;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.industry-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.industry-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 19px;
}

.industry-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.75;
}


/* =========================
   CTA
========================= */

.cta-section {
  padding: 95px 0;
  background: var(--color-primary);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.cta-section .section-eyebrow {
  color: #6ed6d0;
}

.cta-content h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.cta-content h2 span {
  display: block;
  color: #6ed6d0;
}

.cta-content p,
.cta-action > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-cta-primary {
  background: var(--color-accent);
  color: #ffffff;
}

.btn-cta-primary:hover {
  background: #118b86;
}

.btn-cta-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-cta-secondary:hover {
  border-color: #ffffff;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding-top: 72px;
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 65px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 390px;
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.8;
}

.footer-email {
  color: #6ed6d0;
  font-size: 13px;
  font-weight: 700;
}

.footer-column h3 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 14px;
}

.footer-column a {
  display: block;
  margin-bottom: 11px;
  font-size: 13px;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-column p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.8;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 11px;
}


/* =========================
   SHARED PAGE SYSTEM
   For other pages
========================= */

.page-hero,
.product-hero {
  padding: 100px 0 80px;
  background: var(--color-light);
}

.page-hero-content,
.product-hero-content {
  max-width: 820px;
}

.page-hero h1,
.product-hero h1 {
  margin: 0 0 20px;
  color: var(--color-primary);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -2.5px;
}

.page-hero h1 span,
.product-hero h1 span {
  color: var(--color-secondary);
}

.page-hero p,
.product-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.8;
}

.page-section {
  padding: 100px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.spec-table th {
  width: 38%;
  color: var(--color-primary);
}

.rfq-panel {
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-light);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .main-nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image {
    min-height: 430px;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-inner > div:nth-child(3) {
    border-left: 1px solid var(--color-border);
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .product-card-featured {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 720px;
  }

  .product-card:not(.product-card-featured) {
    grid-column: auto;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 70px;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 15px;
  }

  .main-nav {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    padding: 0 0 12px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 11px;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero {
    padding: 70px 0 55px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
    letter-spacing: -2px;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 20px;
  }

  .hero-visual {
    min-height: 330px;
    border-radius: 14px;
  }

  .hero-image {
    min-height: 330px;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner > div,
  .trust-strip-inner > div:first-child,
  .trust-strip-inner > div:nth-child(3) {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .trust-strip-inner > div:last-child {
    border-bottom: 0;
  }

  .products-overview,
  .why-us,
  .industries,
  .page-section {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-featured {
    grid-column: auto;
    min-height: auto;
  }

  .product-card-featured {
    min-height: 680px;
  }

  .product-card-content,
  .product-card-featured .product-card-content {
    padding: 30px 26px 24px;
  }

  .product-card-image {
    min-height: 340px;
  }

  .product-card h3 {
    font-size: 23px;
  }

  .why-us-grid,
  .industries-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .why-us-item {
    min-height: auto;
    padding: 28px;
  }

  .why-us-number {
    margin-bottom: 28px;
  }

  .industry-card {
    min-height: auto;
    padding: 28px;
  }

  .cta-section {
    padding: 75px 0;
  }

  .cta-content h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: auto;
    padding: 25px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero,
  .product-hero {
    padding: 75px 0 60px;
  }

  .page-hero h1,
  .product-hero h1 {
    font-size: 40px;
    letter-spacing: -1.8px;
  }

  .page-hero p,
  .product-hero p {
    font-size: 15px;
  }

  .rfq-panel {
    padding: 26px;
  }

}
/* =========================
   ABOUT PAGE
========================= */

.about-page-hero {
  padding: 110px 0 90px;
}


/* OUR JOURNEY */

.about-journey {
  background: #ffffff;
}

.about-journey-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.about-journey-heading h2,
.about-today-intro h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.about-journey-heading h2 span,
.about-today-intro h2 span {
  color: var(--color-secondary);
}

.about-journey-content {
  max-width: 700px;
}

.about-journey-content p {
  margin: 0 0 22px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-journey-content p:last-child {
  margin-bottom: 0;
}


/* TIMELINE */

.about-timeline {
  padding: 90px 0;
  background: var(--color-light);
}

.about-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.about-timeline-item {
  min-height: 300px;
  padding: 34px;
  background: #ffffff;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.timeline-year {
  display: block;
  min-height: 24px;
  margin-bottom: 45px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-timeline-item h3 {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 21px;
}

.about-timeline-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.8;
}


/* TODAY */

.about-today {
  background: #ffffff;
}

.about-today-intro {
  max-width: 760px;
  margin-bottom: 55px;
}

.about-today-intro p {
  margin: 22px 0 0;
  max-width: 650px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.about-focus-item {
  min-height: 280px;
  padding: 32px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-focus-item > span {
  display: block;
  margin-bottom: 40px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
}

.about-focus-item h3 {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 21px;
}

.about-focus-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.8;
}


/* HOW WE SUPPORT */

.about-support {
  padding: 110px 0;
  background: var(--color-primary);
}

.about-support .section-eyebrow {
  color: #6ed6d0;
}

.about-support .section-heading h2 {
  color: #ffffff;
}

.about-support .section-heading h2 span {
  color: #6ed6d0;
}

.about-support .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.about-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.about-support-card {
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-support-number {
  margin-bottom: 45px;
  color: #6ed6d0;
  font-size: 13px;
  font-weight: 800;
}

.about-support-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 21px;
}

.about-support-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.8;
}


/* TABLET */

@media (max-width: 1000px) {

  .about-journey-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-timeline-grid,
  .about-focus-grid,
  .about-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* MOBILE */

@media (max-width: 700px) {

  .about-page-hero {
    padding: 75px 0 60px;
  }

  .about-journey-heading h2,
  .about-today-intro h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
  }

  .about-journey-content p,
  .about-today-intro p {
    font-size: 15px;
  }

  .about-timeline {
    padding: 70px 0;
  }

  .about-timeline-grid,
  .about-focus-grid,
  .about-support-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline-item,
  .about-focus-item,
  .about-support-card {
    min-height: auto;
    padding: 28px;
  }

  .timeline-year,
  .about-focus-item > span,
  .about-support-number {
    margin-bottom: 28px;
  }

  .about-support {
    padding: 75px 0;
  }

}
/* =========================
   PRODUCTS PAGE
========================= */

.products-page-hero {
  padding: 110px 0 90px;
}


/* FEATURED FILTER BAGS */

.products-featured {
  background: #ffffff;
}

.products-featured-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 90px;
  align-items: center;
}

.products-featured-content h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(42px, 4.5vw, 60px);
  line-height: 1.06;
  letter-spacing: -2px;
}

.products-featured-content h2 span {
  color: var(--color-secondary);
}

.products-featured-content > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.85;
}

.products-featured-points {
  margin: 42px 0;
  border-top: 1px solid var(--color-border);
}

.products-featured-point {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.products-featured-point > span {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
}

.products-featured-point h3 {
  margin: 0 0 7px;
  color: var(--color-primary);
  font-size: 18px;
}

.products-featured-point p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.products-featured-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--color-light);
}

.products-featured-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.products-featured-label {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
}

.products-featured-label span {
  display: inline-block;
  padding: 10px 14px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}


/* CUSTOM MANUFACTURING */

.custom-manufacturing {
  padding: 110px 0;
  background: var(--color-light);
}

.custom-manufacturing-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 65px;
}

.custom-manufacturing-heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.custom-manufacturing-heading h2 span {
  color: var(--color-secondary);
}

.custom-manufacturing-content {
  max-width: 720px;
}

.custom-manufacturing-content p {
  margin: 0 0 22px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.9;
}

.custom-manufacturing-content p:last-child {
  margin-bottom: 0;
}

.custom-requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.custom-requirement-item {
  min-height: 275px;
  padding: 32px;
  background: #ffffff;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.custom-requirement-item > span {
  display: block;
  margin-bottom: 40px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
}

.custom-requirement-item h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 20px;
}

.custom-requirement-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.8;
}


/* SUPPLIED PRODUCTS */

.supplied-products {
  background: #ffffff;
}

.supplied-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.supplied-product-card {
  min-height: 360px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #ffffff;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.supplied-product-card:hover {
  background: var(--color-light);
}

.supplied-product-number {
  margin-bottom: 65px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
}

.supplied-product-card h3 {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 23px;
}

.supplied-product-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.supplied-product-link {
  margin-top: auto;
  padding-top: 35px;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
}


/* TABLET */

@media (max-width: 1000px) {

  .products-featured-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .products-featured-visual,
  .products-featured-visual img {
    min-height: 500px;
  }

  .custom-manufacturing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .custom-requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* MOBILE */

@media (max-width: 700px) {

  .products-page-hero {
    padding: 75px 0 60px;
  }

  .products-featured-grid {
    gap: 40px;
  }

  .products-featured-content h2 {
    font-size: 38px;
    letter-spacing: -1.4px;
  }

  .products-featured-content > p,
  .custom-manufacturing-content p {
    font-size: 15px;
  }

  .products-featured-visual,
  .products-featured-visual img {
    min-height: 380px;
  }

  .products-featured-label {
    top: 18px;
    left: 18px;
  }

  .custom-manufacturing {
    padding: 75px 0;
  }

  .custom-manufacturing-grid {
    margin-bottom: 45px;
  }

  .custom-manufacturing-heading h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
  }

  .custom-requirements-grid,
  .supplied-products-grid {
    grid-template-columns: 1fr;
  }

  .custom-requirement-item,
  .supplied-product-card {
    min-height: auto;
    padding: 28px;
  }

  .custom-requirement-item > span,
  .supplied-product-number {
    margin-bottom: 28px;
  }

  .supplied-product-card {
    min-height: 280px;
  }

}
/* FILTER CAGE IMAGE */

.fc-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-image-frame {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  background: #eef3f3;
}

.fc-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(13, 43, 62, 0.04),
      rgba(21, 155, 149, 0.08)
    );
  z-index: 1;
  pointer-events: none;
}

.fc-image-frame img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.fc-image-frame:hover img {
  transform: scale(1.025);
}

.fc-image-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: 320px;
  padding: 24px 28px;
  background: var(--fc-primary);
}

.fc-image-caption span {
  display: block;
  margin-bottom: 7px;
  color: var(--fc-teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fc-image-caption strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .fc-visual {
    min-height: auto;
  }

  .fc-image-frame,
  .fc-image-frame img {
    min-height: 420px;
    height: 420px;
  }

}


@media (max-width: 700px) {

  .fc-image-frame,
  .fc-image-frame img {
    min-height: 360px;
    height: 360px;
  }

  .fc-image-caption {
    max-width: 85%;
    padding: 20px;
  }

}

/* ========================================
   FILTER HOUSINGS PAGE
======================================== */

/* OVERVIEW */

.housing-overview {
  padding: 110px 0;
}

.housing-overview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(400px, 1.2fr);
  gap: 90px;
  align-items: start;
}

.housing-overview-heading h2 {
  margin: 14px 0 0;
  max-width: 480px;
}

.housing-overview-content {
  max-width: 680px;
}

.housing-overview-content p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.85;
}

.housing-overview-content p:last-child {
  margin-bottom: 0;
}


/* APPLICATIONS */

.housing-applications {
  background: var(--color-light);
}

.housing-application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.housing-application-card {
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.housing-application-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.housing-application-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.housing-application-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 19px;
  line-height: 1.3;
}

.housing-application-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.75;
}


/* CONFIGURATIONS */

.housing-configurations {
  background: var(--color-white);
}

.housing-configuration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.housing-configuration-card {
  padding: 34px 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.housing-configuration-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1.35;
}

.housing-configuration-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.8;
}


/* SELECTION INFORMATION */

.housing-selection {
  background: var(--color-light);
}

.housing-selection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.housing-selection-card {
  padding: 38px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.housing-card-number {
  display: block;
  margin-bottom: 28px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.housing-selection-card h3 {
  margin: 0 0 22px;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.3;
}

.housing-selection-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.housing-selection-card li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.housing-selection-card li:last-child {
  border-bottom: none;
}

.housing-selection-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}


/* REVIEW PROCESS */

.housing-review {
  background: var(--color-white);
}

.housing-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.housing-review-card {
  padding: 36px 32px;
  border-top: 3px solid var(--color-accent);
  background: var(--color-light-blue);
}

.housing-review-card > span {
  display: block;
  margin-bottom: 34px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.housing-review-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1.35;
}

.housing-review-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.8;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .housing-overview-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .housing-application-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .housing-review-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 650px) {

  .housing-overview {
    padding: 75px 0;
  }

  .housing-application-grid,
  .housing-configuration-grid,
  .housing-selection-grid {
    grid-template-columns: 1fr;
  }

  .housing-application-card,
  .housing-configuration-card,
  .housing-selection-card,
  .housing-review-card {
    padding: 28px;
  }

  .housing-application-card > span,
  .housing-review-card > span {
    margin-bottom: 26px;
  }

}
/* =========================================================
   RO MEMBRANES PAGE
========================================================= */

/* HERO */

.ro-membranes-page-hero {
  background:
    linear-gradient(
      135deg,
      rgba(23, 56, 79, 0.05),
      rgba(238, 245, 248, 0.8)
    );
}


/* OVERVIEW */

.ro-overview {
  background: var(--color-white);
}

.ro-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: start;
}

.ro-overview-heading h2,
.ro-replacement-content h2 {
  margin: 0;
}

.ro-overview-content {
  max-width: 760px;
}

.ro-overview-content p {
  margin: 0 0 20px;
}

.ro-overview-content p:last-child {
  margin-bottom: 0;
}


/* MEMBRANE FUNCTION */

.ro-function {
  background: var(--color-light);
}

.ro-function-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ro-function-card {
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.ro-function-card > span {
  display: block;
  margin-bottom: 20px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.ro-function-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1.35;
}

.ro-function-card p {
  margin: 0;
  color: var(--color-text);
}


/* APPLICATIONS */

.ro-applications {
  background: var(--color-white);
}

.ro-application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ro-application-card {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ro-application-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 166, 160, 0.45);
  box-shadow: var(--shadow-md);
}

.ro-application-card > span {
  display: block;
  margin-bottom: 22px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.ro-application-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 19px;
  line-height: 1.35;
}

.ro-application-card p {
  margin: 0;
  color: var(--color-text);
}


/* SELECTION INFORMATION */

.ro-selection {
  background: var(--color-light);
}

.ro-selection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ro-selection-card {
  padding: 36px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.ro-selection-card h3 {
  margin: 0 0 24px;
  color: var(--color-primary);
  font-size: 22px;
}

.ro-selection-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ro-selection-card li {
  position: relative;
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.ro-selection-card li:last-child {
  border-bottom: 0;
}

.ro-selection-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}


/* REPLACEMENT */

.ro-replacement {
  background: var(--color-white);
}

.ro-replacement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  gap: 80px;
  align-items: center;
}

.ro-replacement-content p {
  margin: 0 0 20px;
}

.ro-replacement-content p:last-child {
  margin-bottom: 0;
}

.ro-replacement-box {
  padding: 40px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.ro-replacement-box h3 {
  margin: 0 0 22px;
  color: var(--color-white);
  font-size: 23px;
}

.ro-replacement-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ro-replacement-box li {
  position: relative;
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.ro-replacement-box li:last-child {
  border-bottom: 0;
}

.ro-replacement-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}


/* INDUSTRIES */

.ro-industries {
  background: var(--color-light);
}

.ro-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ro-industry-card {
  padding: 30px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.ro-industry-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 19px;
}

.ro-industry-card p {
  margin: 0;
  color: var(--color-text);
}


/* FAQ */

.ro-faq {
  background: var(--color-white);
}

.ro-faq-list {
  max-width: 900px;
}

.ro-faq-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--color-border);
}

.ro-faq-item:first-child {
  padding-top: 0;
}

.ro-faq-item h3 {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 19px;
  line-height: 1.45;
}

.ro-faq-item p {
  margin: 0;
  color: var(--color-text);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .ro-overview-grid,
  .ro-replacement-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ro-function-grid,
  .ro-application-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ro-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 700px) {

  .ro-overview-grid {
    gap: 35px;
  }

  .ro-function-grid,
  .ro-application-grid,
  .ro-selection-grid,
  .ro-industry-grid {
    grid-template-columns: 1fr;
  }

  .ro-function-card,
  .ro-application-card,
  .ro-selection-card,
  .ro-industry-card {
    padding: 26px;
  }

  .ro-replacement-box {
    padding: 30px;
  }

}
/* =========================================
   CONTACT PAGE
========================================= */

/* CONTACT OVERVIEW */

.contact-overview {
  padding: 110px 0;
}

.contact-overview .why-us-grid {
  margin-top: 60px;
}


/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
  padding: 110px 0;
  background: #f6f7f8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
  max-width: 620px;
}

.contact-details h2 {
  margin-top: 18px;
  margin-bottom: 24px;
}

.contact-details > p {
  max-width: 560px;
  margin-bottom: 50px;
}


/* CONTACT DETAILS LIST */

.contact-details-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #dfe2e5;
}

.contact-detail-item {
  padding: 28px 0;
  border-bottom: 1px solid #dfe2e5;
}

.contact-detail-label {
  display: block;
  margin-bottom: 10px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: #8b939c;
}

.contact-detail-item a {
  display: inline-block;

  font-size: 18px;
  font-weight: 700;

  color: #111827;
  text-decoration: none;

  transition: color 0.2s ease;
}

.contact-detail-item a:hover {
  color: #f59e0b;
}

.contact-detail-item p {
  margin: 0;

  font-size: 17px;
  line-height: 1.7;

  color: #4b5563;
}


/* =========================================
   CONTACT NOTE
========================================= */

.contact-note {
  margin-top: 45px;
  padding: 30px;

  background: #ffffff;
  border: 1px solid #e3e5e8;
  border-left: 4px solid #f59e0b;
}

.contact-note strong {
  display: block;
  margin-bottom: 12px;

  font-size: 16px;
  font-weight: 800;

  color: #111827;
}

.contact-note p {
  margin: 0;

  font-size: 15px;
  line-height: 1.8;

  color: #5b6470;
}


/* =========================================
   CONTACT SIDE PANEL
========================================= */

.contact-side-panel {
  padding: 48px;

  background: #111827;
  color: #ffffff;
}

.contact-side-panel .section-eyebrow {
  color: #f59e0b;
}

.contact-side-panel h2 {
  margin-top: 18px;
  margin-bottom: 22px;

  color: #ffffff;
}

.contact-side-panel h2 span {
  color: #f59e0b;
}

.contact-side-panel > p {
  margin-bottom: 38px;

  color: #c5cad3;
  line-height: 1.8;
}


/* CONTACT ACTION LIST */

.contact-action-list {
  display: grid;
  gap: 18px;
}

.contact-action-item {
  display: block;

  padding: 24px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: #ffffff;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.contact-action-item:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.5);
}

.contact-action-item strong {
  display: block;
  margin-bottom: 8px;

  font-size: 17px;
  font-weight: 800;

  color: #ffffff;
}

.contact-action-item span {
  display: block;

  font-size: 14px;
  line-height: 1.6;

  color: #b9c0ca;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .contact-overview,
  .contact-section {
    padding: 85px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-details {
    max-width: 100%;
  }

}


@media (max-width: 600px) {

  .contact-overview,
  .contact-section {
    padding: 70px 0;
  }

  .contact-detail-item {
    padding: 22px 0;
  }

  .contact-detail-item a {
    font-size: 16px;
  }

  .contact-detail-item p {
    font-size: 16px;
  }

  .contact-note {
    padding: 24px;
  }

  .contact-side-panel {
    padding: 30px 24px;
  }

  .contact-action-item {
    padding: 20px;
  }

}
/* =========================================
   RFQ PAGE
========================================= */

.rfq-steps {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.rfq-step {
  position: relative;
  padding: 22px 24px;
  border: 1px solid var(--line, #dfe8ed);
  border-radius: 8px;
  background: #fff;
}

.rfq-step-number {
  display: block;
  margin-bottom: 8px;
  color: var(--teal, #16a6a0);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.rfq-step h3 {
  margin: 0 0 7px;
  color: var(--navy, #17384f);
  font-size: 16px;
  line-height: 1.3;
}

.rfq-step p {
  margin: 0;
  color: var(--text, #536b7b);
  font-size: 13px;
  line-height: 1.7;
}


/* =========================================
   RFQ FORM
========================================= */

.rfq-form {
  display: grid;
  gap: 20px;
}

.rfq-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rfq-field {
  display: grid;
  gap: 8px;
}

.rfq-field.full {
  grid-column: 1 / -1;
}

.rfq-field label {
  color: var(--navy, #17384f);
  font-size: 12px;
  font-weight: 700;
}

.rfq-field label span {
  color: var(--muted, #7b8d99);
  font-weight: 500;
}

.rfq-field input,
.rfq-field select,
.rfq-field textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line, #dfe8ed);
  border-radius: 6px;
  outline: none;
  background: #fff;
  color: var(--navy, #17384f);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.5;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.rfq-field input::placeholder,
.rfq-field textarea::placeholder {
  color: #9aa9b3;
}

.rfq-field input:focus,
.rfq-field select:focus,
.rfq-field textarea:focus {
  border-color: var(--teal, #16a6a0);
  box-shadow: 0 0 0 3px rgba(22, 166, 160, 0.1);
}

.rfq-field textarea {
  min-height: 140px;
  resize: vertical;
}


/* =========================================
   FILE UPLOAD
========================================= */

.rfq-upload {
  padding: 22px;
  border: 1px dashed #cbd8df;
  border-radius: 8px;
  background: #f7fafb;
}

.rfq-upload label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy, #17384f);
  font-size: 13px;
  font-weight: 700;
}

.rfq-upload p {
  margin: 0 0 14px;
  color: var(--text, #536b7b);
  font-size: 12px;
  line-height: 1.7;
}

.rfq-upload input[type="file"] {
  width: 100%;
  color: var(--text, #536b7b);
  font-family: inherit;
  font-size: 12px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.rfq-submit {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}

.rfq-submit button {
  appearance: none;
  border: 0;
  padding: 14px 26px;
  border-radius: 6px;
  background: var(--teal, #16a6a0);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.rfq-submit button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.rfq-submit button:focus-visible {
  outline: 3px solid rgba(22, 166, 160, 0.3);
  outline-offset: 3px;
}


/* =========================================
   RFQ FORM WRAPPER ADJUSTMENTS
========================================= */

.contact-form-wrapper .rfq-form {
  margin-top: 28px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 700px) {

  .rfq-row {
    grid-template-columns: 1fr;
  }

  .rfq-field.full {
    grid-column: auto;
  }

  .rfq-step {
    padding: 20px;
  }

  .rfq-upload {
    padding: 18px;
  }

  .rfq-submit {
    justify-content: stretch;
  }

  .rfq-submit button {
    width: 100%;
  }

}

.rfq-upload-limit {
  margin-top: 10px !important;
  font-size: 11px !important;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
