/* Pages solutions (prospectus) — distinct des filiales */
.sol-page {
  margin-top: var(--header-h);
}

.sol-hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  color: var(--white);
  overflow: hidden;
}

.sol-hero--dark { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.sol-hero--red { background: linear-gradient(135deg, #b8050f 0%, #e30613 55%, #1a1a1a 100%); }
.sol-hero--blue { background: linear-gradient(135deg, #004a7c 0%, #0078c8 55%, #1a1a1a 100%); }

.sol-hero--has-bg.sol-hero--dark,
.sol-hero--has-bg.sol-hero--red,
.sol-hero--has-bg.sol-hero--blue {
  background: var(--black);
}

.sol-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--sol-bg);
  background-size: cover;
  background-position: center;
}

.sol-hero--dark .sol-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.78) 50%, rgba(227, 6, 19, 0.35) 100%);
}

.sol-hero--red .sol-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 5, 15, 0.9) 0%, rgba(26, 26, 26, 0.82) 55%, rgba(227, 6, 19, 0.4) 100%);
}

.sol-hero--blue .sol-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 74, 124, 0.9) 0%, rgba(26, 26, 26, 0.8) 55%, rgba(0, 120, 200, 0.4) 100%);
}

.sol-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  max-width: 820px;
}

.sol-hero__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sol-hero__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px;
}

.sol-hero__name {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}

.sol-hero__badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.55rem;
  background: var(--white);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  vertical-align: middle;
}

.sol-hero--blue .sol-hero__badge {
  color: #0078c8;
}

.sol-hero__title {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  opacity: 0.95;
}

.sol-hero__lead {
  font-size: 1.02rem;
  line-height: 1.55;
  opacity: 0.88;
  max-width: 720px;
}

.sol-hero__subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.92;
  margin-top: 0.35rem;
}

.sol-band {
  position: relative;
  padding: 3rem 0;
}

.sol-band--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--sol-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.sol-band--bg-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 0;
}

.sol-band--bg-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.82);
  z-index: 0;
}

.sol-band--bg .container {
  position: relative;
  z-index: 1;
}

.sol-band--bg-dark .sol-band__title,
.sol-band--bg-dark .sol-band__subtitle,
.sol-band--bg-dark .sol-band__text {
  color: var(--white);
}

.sol-band--alt {
  background: var(--gray-50);
}

.sol-band--bg.sol-band--alt::after {
  background: rgba(247, 247, 247, 0.9);
}

.sol-band__title--spaced {
  margin-top: 2rem;
}

.sol-band__subtitle--strong {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.sol-band__actions {
  margin-top: 1.75rem;
}

.sol-band--center .container {
  text-align: center;
}

.sol-band--center .sol-band__title {
  margin-left: auto;
  margin-right: auto;
}

.sol-band--center .sol-highlight {
  justify-content: center;
}

.sol-band--center .sol-band__actions {
  display: flex;
  justify-content: center;
}

.sol-band__title {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.65rem;
}

.sol-band__subtitle {
  color: var(--gray-500);
  margin-bottom: 1.75rem;
  max-width: 680px;
}

.sol-band__text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--gray-700);
  max-width: 820px;
  text-align: justify;
}

.sol-page .sol-card p {
  text-align: left;
}

.sol-page .sol-split__text p {
  text-align: justify;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.sol-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.sol-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.sol-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.sol-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.45rem;
}

.sol-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.45;
}

.sol-card--dark { border-top: 3px solid var(--black); }
.sol-card--with-img.sol-card--dark { border-top: none; }
.sol-card--with-img.sol-card--blue { border-top: none; }

.sol-card--with-img {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.sol-card__img {
  height: 160px;
  overflow: hidden;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-card__img .sol-img--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sol-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
}

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

.sol-img--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sol-split--media {
  align-items: center;
}

.sol-split__media {
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow);
}

.sol-split__media--rounded {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.sol-split__media--inline {
  margin-top: 1.25rem;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  max-width: 100%;
}

.sol-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.sol-showcase__item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.sol-showcase__item .sol-img--cover {
  aspect-ratio: 4 / 3;
  display: block;
}

.sol-showcase__item figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  text-align: center;
  background: var(--gray-50);
}

.sol-highlight--on-dark span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.sol-cta--transparent {
  background: transparent;
  padding: 1.5rem 0;
}

.sol-btn--light {
  border-color: var(--white) !important;
  color: var(--white) !important;
}

.sol-btn--light:hover {
  background: var(--white);
  color: var(--black) !important;
}
.sol-card--red { border-top: 3px solid var(--red); }
.sol-card--blue { border-top: 3px solid #0078c8; }

.sol-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.sol-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--gray-700);
}

.sol-list li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--red);
}

.sol-list--dark li::before { background: var(--black); }
.sol-list--blue li::before { background: #0078c8; }

.sol-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.sol-feature-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.sol-feature-block h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.65rem;
}

.sol-feature-block--blue h3 { color: #0078c8; }

.sol-feature-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sol-feature-block li {
  font-size: 0.85rem;
  padding: 0.3rem 0;
  color: var(--gray-700);
}

.sol-feature-block li::before {
  content: "·";
  margin-right: 0.4rem;
  color: var(--gray-500);
}

.sol-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.sol-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}

.sol-step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0078c8;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.sol-step h4 {
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.sol-step p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.sol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sol-tags li {
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.sol-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sol-benefits__col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-top: 3px solid #0078c8;
  box-shadow: var(--shadow);
}

.sol-benefits__col h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0078c8;
  margin-bottom: 0.65rem;
}

.sol-benefits__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sol-benefits__col li {
  font-size: 0.86rem;
  padding: 0.3rem 0;
  line-height: 1.4;
}

.sol-cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  color: var(--white);
  margin-top: 1rem;
}

.sol-cta--dark { background: var(--black); }
.sol-cta--red { background: var(--red); }
.sol-cta--blue { background: #0078c8; }

.sol-cta p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.sol-cta .btn {
  margin: 0 0.35rem;
}

.sol-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sol-highlight span {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
}

.sol-capacity {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-weight: 600;
}

.sol-contact {
  background: var(--gray-50);
  padding: 3rem 0;
}

.sol-contact__box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
  max-width: 720px;
  margin-inline: auto;
}

.sol-contact--dark .sol-contact__box { border-left-color: var(--black); }
.sol-contact--blue .sol-contact__box { border-left-color: #0078c8; }

.sol-contact__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sol-contact__form {
  margin-top: 0;
}

.footer--solution {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
}

.footer--solution .footer__brand-name {
  color: var(--white);
}

.footer--solution .footer__brand-name span {
  color: var(--red);
}

.footer--solution--blue .footer__brand-name span {
  color: #4db8e8;
}

.footer--solution--dark .footer__brand-name span {
  color: rgba(255, 255, 255, 0.85);
}

/* ALIKO HYDROTECH (prospectus) */
.sol-page--hydrotech .sol-hero__inner {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.sol-page--hydrotech .sol-hero__brand {
  justify-content: center;
}

.sol-page--hydrotech .sol-hero__lead {
  margin-inline: auto;
}

.sol-hydrotech-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
  align-items: start;
}

.sol-hydrotech-duo__col .sol-band__title {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  margin-bottom: 1rem;
}

.sol-hydrotech-duo__col--center {
  text-align: center;
}

.sol-hydrotech-duo__col--center .sol-band__title {
  margin-inline: auto;
}

.sol-hydrotech-duo__col--center .sol-highlight {
  justify-content: center;
}

.sol-hydrotech-duo .sol-highlight span {
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sol-hydrotech-banner {
  margin-top: 2.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 21 / 8;
  max-height: 380px;
  background: var(--gray-100);
}

.sol-hydrotech-banner .sol-img--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sol-grid--hydrotech {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.25rem;
}

.sol-steps--compact {
  margin-top: 1rem;
  gap: 0.65rem;
}

.sol-steps--compact .sol-step {
  padding: 0.75rem 0.85rem;
}

.sol-steps--compact .sol-step__num {
  width: 28px;
  height: 28px;
  font-size: 0.82rem;
}

.sol-steps--compact .sol-step h4 {
  font-size: 0.88rem;
}

.sol-steps--compact .sol-step p {
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .sol-split,
  .sol-grid--2,
  .sol-benefits,
  .sol-hydrotech-duo,
  .sol-grid--hydrotech {
    grid-template-columns: 1fr;
  }

  .sol-hydrotech-banner {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
}
