:root {
  --fc-blue: #244f8f;
  --fc-blue-deep: #0b2445;
  --fc-cyan: #3ba7d6;
  --fc-teal: #1d8c9f;
  --fc-green: #75a843;
  --fc-ink: #142033;
  --fc-muted: #5c697a;
  --fc-line: #d8e3ed;
  --fc-mist: #f2f7fb;
  --fc-white: #ffffff;
  --fc-shadow: 0 18px 55px rgba(13, 45, 80, 0.14);
  --fc-radius: 8px;
  --fc-wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fc-ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(59, 167, 214, 0.08) 0 4px, transparent 5px),
    radial-gradient(circle at 94% 34%, rgba(36, 79, 143, 0.06) 0 6px, transparent 7px),
    var(--fc-white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.fc-menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  color: var(--fc-muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--fc-ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 4vw, 3.9rem);
  max-width: 960px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

.fc-wrap {
  width: min(calc(100% - 40px), var(--fc-wrap));
  margin-inline: auto;
}

.fc-skip {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--fc-blue);
  color: var(--fc-white);
}

.fc-skip:focus {
  top: 16px;
}

.fc-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 227, 237, 0.75);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.fc-site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(11, 36, 69, 0.08);
}

.fc-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 26px;
}

.fc-logo img {
  width: 190px;
}

.fc-logo {
  flex: 0 0 auto;
}

.fc-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (min-width: 941px) {
  .fc-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.fc-menu,
.fc-menu ul {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-menu > li {
  position: relative;
}

.fc-menu a {
  display: block;
  padding: 12px 9px;
  color: #2b3e55;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease;
}

.fc-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  display: grid !important;
  min-width: 230px;
  gap: 2px;
  padding: 10px !important;
  visibility: hidden;
  opacity: 0;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.fc-menu-item--has-children:hover > .fc-submenu,
.fc-menu-item--has-children:focus-within > .fc-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.fc-submenu--mega {
  left: 50%;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  width: min(760px, calc(100vw - 40px));
  transform: translate(-50%, 8px);
}

.fc-menu-item--has-children:hover > .fc-submenu--mega,
.fc-menu-item--has-children:focus-within > .fc-submenu--mega {
  transform: translate(-50%, 0);
}

.fc-submenu-group {
  display: grid;
  align-content: start;
  gap: 4px;
}

.fc-submenu-group ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-menu .fc-submenu a {
  padding: 9px 10px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.fc-menu .fc-submenu-heading {
  color: var(--fc-blue);
  background: #eef6fb;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fc-menu a:hover,
.fc-menu .current-menu-item > a {
  color: var(--fc-blue);
  background: #eef6fb;
}

.fc-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--fc-line);
  background: var(--fc-white);
  border-radius: var(--fc-radius);
  cursor: pointer;
}

.fc-menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--fc-blue-deep);
}

.fc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--fc-radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.fc-button:hover {
  transform: translateY(-2px);
}

.fc-button--primary,
.fc-button--header {
  background: var(--fc-blue);
  color: var(--fc-white);
  box-shadow: 0 12px 26px rgba(36, 79, 143, 0.25);
}

.fc-button--secondary {
  border-color: #bdd4e6;
  color: var(--fc-blue-deep);
  background: var(--fc-white);
}

.fc-button--light {
  background: var(--fc-white);
  color: var(--fc-blue-deep);
}

.fc-button--whatsapp {
  background: #e8f7ef;
  color: #126238;
  border-color: #b9e5c9;
}

.fc-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 42px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.95) 0 7px, transparent 8px),
    radial-gradient(circle at 82% 32%, rgba(59, 167, 214, 0.16) 0 5px, transparent 6px),
    radial-gradient(circle at 93% 45%, rgba(36, 79, 143, 0.12) 0 10px, transparent 11px),
    linear-gradient(90deg, rgba(245, 250, 253, 0.98), rgba(245, 250, 253, 0.78)),
    radial-gradient(circle at 82% 6%, rgba(59, 167, 214, 0.18), transparent 32%),
    var(--fc-mist);
}

.fc-hero-bg {
  position: absolute;
  inset: auto -5% -120px -5%;
  height: 240px;
  background:
    repeating-linear-gradient(175deg, transparent 0 34px, rgba(36, 79, 143, 0.09) 35px 44px),
    linear-gradient(90deg, rgba(59, 167, 214, 0.15), rgba(117, 168, 67, 0.08));
  transform: skewY(-3deg);
}

.fc-hero-grid,
.fc-page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: 46px;
}

.fc-eyebrow {
  margin-bottom: 14px;
  color: var(--fc-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fc-hero-copy p:not(.fc-eyebrow),
.fc-page-hero p:not(.fc-eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.fc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.fc-hero-media {
  position: relative;
}

.fc-hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
  background: #dceaf3;
}

.fc-hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: fc-hero-slide 24s infinite;
}

.fc-hero-slideshow img:nth-child(2) {
  animation-delay: 6s;
}

.fc-hero-slideshow img:nth-child(3) {
  animation-delay: 12s;
}

.fc-hero-slideshow img:nth-child(4) {
  animation-delay: 18s;
}

.fc-hero-media img,
.fc-page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
}

.fc-hero-slideshow img {
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

.fc-hero-meter {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--fc-radius);
  box-shadow: 0 10px 30px rgba(11, 36, 69, 0.16);
  font-size: 0.82rem;
  font-weight: 900;
}

.fc-hero-meter div {
  height: 8px;
  overflow: hidden;
  background: #dceaf3;
  border-radius: 999px;
}

.fc-hero-meter i {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--fc-blue), var(--fc-cyan), var(--fc-green));
  border-radius: inherit;
  animation: fc-meter 2.8s ease-in-out infinite alternate;
}

@keyframes fc-meter {
  from { width: 34%; }
  to { width: 88%; }
}

@keyframes fc-hero-slide {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  6% {
    opacity: 1;
  }
  25% {
    opacity: 1;
    transform: scale(1);
  }
  31% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

.fc-proof-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  background: var(--fc-line);
  box-shadow: 0 18px 44px rgba(11, 36, 69, 0.08);
}

.fc-proof-strip div {
  padding: 20px;
  background: var(--fc-white);
}

.fc-proof-strip strong {
  display: block;
  color: var(--fc-blue-deep);
  font-size: 1rem;
}

.fc-proof-strip span {
  display: block;
  margin-top: 5px;
  color: var(--fc-muted);
  font-size: 0.92rem;
}

.fc-section {
  padding: 92px 0;
}

.fc-section--mist {
  background: var(--fc-mist);
}

.fc-section--deep {
  background: var(--fc-blue-deep);
}

.fc-section--deep h2,
.fc-section--deep h3,
.fc-section--deep .fc-process-step,
.fc-section--deep .fc-process-detail h3 {
  color: var(--fc-white);
}

.fc-section--deep p,
.fc-section--deep .fc-process-detail p {
  color: #c7d7e6;
}

.fc-section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.fc-section-head p:last-child {
  margin-top: 16px;
  font-size: 1.08rem;
}

.fc-two-col {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: start;
}

.fc-risk-list,
.fc-feature-list,
.fc-proof-cards {
  display: grid;
  gap: 12px;
}

.fc-risk-list div,
.fc-feature-list div,
.fc-proof-cards div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  box-shadow: 0 8px 24px rgba(11, 36, 69, 0.05);
  font-weight: 750;
}

.fc-risk-list span {
  flex: 0 0 auto;
  color: var(--fc-teal);
  font-weight: 900;
}

.fc-feature-list span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--fc-green);
  border-radius: 999px;
}

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

.fc-solution-card {
  min-height: 100%;
  overflow: hidden;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  box-shadow: 0 10px 30px rgba(11, 36, 69, 0.06);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.fc-solution-card:hover {
  transform: translateY(-5px);
  border-color: #9ccce2;
  box-shadow: var(--fc-shadow);
}

.fc-solution-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fc-solution-card span,
.fc-solution-card p {
  display: block;
  padding-inline: 20px;
}

.fc-solution-card span {
  padding-top: 20px;
  color: var(--fc-blue-deep);
  font-size: 1.08rem;
  font-weight: 900;
}

.fc-solution-card p {
  padding-top: 8px;
  padding-bottom: 22px;
  font-size: 0.94rem;
}

.fc-industry-switcher {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.fc-industry-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fc-industry-tabs button {
  min-height: 66px;
  padding: 12px;
  color: var(--fc-blue-deep);
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.fc-industry-tabs button.is-active {
  color: var(--fc-white);
  background: var(--fc-blue);
  border-color: var(--fc-blue);
}

.fc-industry-panel {
  min-height: 100%;
  padding: 34px;
  background: linear-gradient(135deg, #f7fbfd, #ffffff);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
}

.fc-industry-panel > div {
  display: none;
}

.fc-industry-panel > div.is-active {
  display: block;
}

.fc-industry-panel p {
  margin: 14px 0 24px;
  font-size: 1.08rem;
}

.fc-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.fc-process-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 4px;
  overflow: hidden;
  background: rgba(59, 167, 214, 0.2);
  border-radius: 999px;
}

.fc-process-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--fc-cyan), var(--fc-green));
  border-radius: inherit;
  animation: fc-flow 3.6s ease-in-out infinite alternate;
}

@keyframes fc-flow {
  from { transform: translateX(0); }
  to { transform: translateX(122%); }
}

.fc-process-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  min-height: 132px;
  padding: 0 12px 18px;
  color: var(--fc-blue-deep);
  background: transparent;
  border: 0;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.fc-process-step span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto;
  color: var(--fc-blue-deep);
  background: var(--fc-white);
  border: 3px solid #cce4ef;
  border-radius: 999px;
  font-weight: 950;
  transition: transform 160ms ease, border-color 160ms ease;
}

.fc-process-step.is-active span,
.fc-process-step:hover span {
  transform: scale(1.06);
  border-color: var(--fc-green);
}

.fc-process-detail {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 227, 237, 0.22);
  border-radius: var(--fc-radius);
}

.fc-section:not(.fc-section--deep) .fc-process-detail {
  background: var(--fc-white);
  border-color: var(--fc-line);
}

.fc-process-detail > div {
  display: none;
}

.fc-process-detail > div.is-active {
  display: block;
}

.fc-process-detail p {
  margin-top: 10px;
}

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

.fc-benefit-grid > div,
.fc-industry-card,
.fc-project-card {
  padding: 24px;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  box-shadow: 0 10px 30px rgba(11, 36, 69, 0.05);
}

.fc-benefit-grid strong,
.fc-industry-card h2,
.fc-project-card h2 {
  color: var(--fc-blue-deep);
  font-size: 1.16rem;
  font-weight: 900;
}

.fc-benefit-grid p,
.fc-industry-card p,
.fc-project-card p {
  margin-top: 10px;
}

.fc-page-hero {
  padding: 82px 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(59, 167, 214, 0.13) 0 5px, transparent 6px),
    radial-gradient(circle at 91% 35%, rgba(36, 79, 143, 0.09) 0 8px, transparent 9px),
    linear-gradient(135deg, #f7fbfd, #ffffff 54%, #eef6fb);
  border-bottom: 1px solid var(--fc-line);
}

.fc-page-hero--compact {
  padding: 74px 0;
}

.fc-page-hero--compact .fc-wrap {
  max-width: 940px;
}

.fc-project-card {
  overflow: hidden;
  padding: 0;
}

.fc-project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fc-project-card div {
  padding: 22px;
}

.fc-product-group-grid,
.fc-stock-grid,
.fc-resource-grid,
.fc-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fc-product-group,
.fc-stock-card,
.fc-resource-card,
.fc-detail-card {
  overflow: hidden;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  box-shadow: 0 10px 30px rgba(11, 36, 69, 0.05);
}

.fc-product-group img,
.fc-stock-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fc-product-group > div,
.fc-stock-card,
.fc-resource-card {
  padding: 24px;
}

.fc-product-group img + div,
.fc-stock-card img + h2 {
  padding-top: 20px;
}

.fc-product-group h2,
.fc-stock-card h2,
.fc-resource-card h2,
.fc-detail-card h2 {
  color: var(--fc-blue-deep);
  font-size: 1.16rem;
  font-weight: 900;
}

.fc-brand-name,
.fc-product-group h2,
.fc-detail-card h2 {
  text-transform: uppercase;
}

.fc-product-group p,
.fc-resource-card p,
.fc-detail-card p {
  margin-top: 10px;
}

.fc-product-group h2 a,
.fc-feature-list a {
  color: inherit;
}

.fc-detail-card {
  display: block;
  padding: 24px;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.fc-detail-card:hover {
  transform: translateY(-4px);
  border-color: #9ccce2;
  box-shadow: var(--fc-shadow);
}

.fc-product-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fc-product-group li {
  padding: 7px 10px;
  color: var(--fc-blue-deep);
  background: #eef6fb;
  border: 1px solid #cfe3ef;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.fc-stock-card {
  padding: 0;
}

.fc-stock-card h2 {
  padding: 20px 22px 22px;
}

.fc-resource-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--fc-blue);
  font-weight: 900;
}

.fc-client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.fc-home-client-slider {
  margin-bottom: 42px;
}

.fc-client-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.fc-client-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: fc-client-marquee 28s linear infinite;
}

.fc-client-marquee:hover .fc-client-marquee-track {
  animation-play-state: paused;
}

.fc-client-marquee .fc-client-logo {
  width: 178px;
  flex: 0 0 178px;
}

.fc-client-logo {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 18px;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  box-shadow: 0 10px 30px rgba(11, 36, 69, 0.05);
}

.fc-client-logo img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

@keyframes fc-client-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

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

.fc-faq-item {
  overflow: hidden;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  box-shadow: 0 10px 30px rgba(11, 36, 69, 0.05);
}

.fc-faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  padding: 20px 22px;
  color: var(--fc-blue-deep);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.fc-faq-item i {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.fc-faq-item i::before,
.fc-faq-item i::after {
  content: "";
  position: absolute;
  inset: 8px 0 auto;
  height: 2px;
  background: var(--fc-cyan);
}

.fc-faq-item i::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.fc-faq-item.is-open i::after {
  transform: rotate(0deg);
}

.fc-faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.fc-faq-item.is-open .fc-faq-answer {
  display: block;
}

.fc-proof-block .fc-proof-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-cta-band {
  padding: 58px 0;
  color: var(--fc-white);
  background:
    linear-gradient(135deg, rgba(11, 36, 69, 0.94), rgba(36, 79, 143, 0.92)),
    url("../images/container-plant.jpg") center / cover;
}

.fc-cta-band h2 {
  max-width: 720px;
  color: var(--fc-white);
}

.fc-cta-band p {
  max-width: 700px;
  margin-top: 14px;
  color: #d8e8f4;
}

.fc-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.fc-cta-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.fc-phone-link {
  color: var(--fc-white);
  font-size: 1.08rem;
  font-weight: 900;
}

.fc-contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 28px;
  align-items: start;
}

.fc-contact-panel,
.fc-form {
  padding: 28px;
  background: var(--fc-white);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  box-shadow: 0 10px 30px rgba(11, 36, 69, 0.06);
}

.fc-contact-panel p {
  margin-top: 14px;
}

.fc-contact-panel a {
  color: var(--fc-blue);
  font-weight: 800;
}

.fc-form {
  display: grid;
  gap: 14px;
}

.fc-form-note {
  padding: 12px 14px;
  border-radius: var(--fc-radius);
  font-weight: 800;
}

.fc-form-note--success {
  color: #174b25;
  background: #e6f5e9;
  border: 1px solid #b9dfc1;
}

.fc-form-note--error {
  color: #84211f;
  background: #fdebea;
  border: 1px solid #f3b9b4;
}

.fc-form label {
  display: grid;
  gap: 6px;
  color: var(--fc-blue-deep);
  font-weight: 800;
}

.fc-form input,
.fc-form select,
.fc-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--fc-ink);
  background: #f8fbfd;
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  font: inherit;
}

.fc-form textarea {
  resize: vertical;
}

.fc-footer {
  padding: 58px 0 26px;
  background: #071a31;
  color: var(--fc-white);
}

.fc-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 34px;
}

.fc-footer-logo {
  width: 230px;
  padding: 10px;
  background: var(--fc-white);
  border-radius: var(--fc-radius);
}

.fc-footer h2 {
  margin-bottom: 12px;
  color: var(--fc-white);
  font-size: 1rem;
}

.fc-footer p,
.fc-footer a {
  display: block;
  margin-top: 8px;
  color: #c7d7e6;
}

.fc-footer a:hover {
  color: var(--fc-white);
}

.fc-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aebfd0;
  font-size: 0.92rem;
}

.fc-site-credit {
  padding: 13px 0;
  color: #aebfd0;
  background: #061528;
  font-size: 0.86rem;
  text-align: center;
}

.fc-site-credit a {
  color: var(--fc-white);
  font-weight: 900;
}

.fc-site-credit a:hover {
  color: #d8e8f4;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .fc-logo img {
    width: 158px;
  }

  .fc-menu a {
    padding-inline: 7px;
    font-size: 0.8rem;
  }
}

@media (max-width: 940px) {
  .fc-header-inner {
    min-height: 78px;
  }

  .fc-menu-toggle {
    display: block;
  }

  .fc-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    transform: none;
    max-height: calc(100vh - 78px);
    overflow: auto;
    padding: 20px;
    background: var(--fc-white);
    border-bottom: 1px solid var(--fc-line);
    box-shadow: var(--fc-shadow);
  }

  .fc-nav.is-open {
    display: block;
  }

  .fc-menu,
  .fc-menu ul {
    display: grid;
    gap: 4px;
  }

  .fc-menu a {
    padding: 14px;
    font-size: 1rem;
  }

  .fc-submenu,
  .fc-submenu--mega {
    position: static;
    width: auto;
    min-width: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 14px !important;
    background: transparent;
  }

  .fc-submenu--mega {
    grid-template-columns: 1fr;
  }

  .fc-menu .fc-submenu a {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .fc-button--header {
    width: 100%;
    margin-top: 14px;
  }

  .fc-hero-grid,
  .fc-page-hero-grid,
  .fc-two-col,
  .fc-industry-switcher,
  .fc-cta-grid,
  .fc-contact-grid,
  .fc-footer-grid {
    grid-template-columns: 1fr;
  }

  .fc-card-grid,
  .fc-benefit-grid,
  .fc-industry-grid,
    .fc-project-grid,
    .fc-product-group-grid,
    .fc-stock-grid,
    .fc-resource-grid,
    .fc-detail-grid,
    .fc-client-logo-grid,
    .fc-proof-block .fc-proof-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fc-cta-actions {
    justify-items: start;
  }
}

@media (max-width: 700px) {
  .fc-wrap {
    width: min(calc(100% - 28px), var(--fc-wrap));
  }

  h1 {
    font-size: 2.12rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2rem;
  }

  .fc-page-hero,
  .fc-section {
    padding-block: 58px;
  }

  .fc-hero {
    padding: 46px 0 54px;
    background:
      linear-gradient(180deg, rgba(247, 251, 253, 0.96), rgba(247, 251, 253, 0.9)),
      url("../images/hero-tanks.jpg") center bottom / cover;
  }

  .fc-hero-copy p:not(.fc-eyebrow),
  .fc-page-hero p:not(.fc-eyebrow) {
    font-size: 1rem;
  }

  .fc-logo img {
    width: 156px;
  }

  .fc-proof-strip {
    display: none;
  }

  .fc-card-grid,
  .fc-benefit-grid,
  .fc-industry-grid,
  .fc-project-grid,
    .fc-product-group-grid,
    .fc-stock-grid,
    .fc-resource-grid,
    .fc-detail-grid,
    .fc-client-logo-grid,
    .fc-industry-tabs,
    .fc-proof-block .fc-proof-cards {
    grid-template-columns: 1fr;
  }

  .fc-hero-media {
    display: block;
  }

  .fc-hero-meter {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fc-client-marquee {
    margin-inline: -14px;
  }

  .fc-process {
    grid-template-columns: 1fr;
  }

  .fc-process-line {
    display: none;
  }

  .fc-process-step {
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: auto;
    padding: 10px;
    text-align: left;
  }

  .fc-process-step span {
    margin: 0;
  }

  .fc-footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fc-hero-slideshow img,
  .fc-client-marquee-track,
  .fc-hero-meter i {
    animation: none;
  }

  .fc-hero-slideshow img:first-child {
    opacity: 1;
    transform: none;
  }
}
