:root {
  --blue-900: #0b2a4d;
  --blue-800: #104072;
  --blue-700: #16649f;
  --teal: #12c3d8;
  --gray-900: #1f2d3d;
  --gray-700: #4a596a;
  --gray-300: #d8e2ee;
  --gray-200: #e9f1f8;
  --gray-100: #f5f8fb;
  --white: #ffffff;
  --shadow-soft: 0 16px 32px rgba(11, 42, 77, 0.1);
  --radius-lg: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--gray-900);
  background: linear-gradient(180deg, #f2f7fc 0%, #eef4fa 100%);
  min-height: 100vh;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12, 45, 87, 0.05);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), #0fc0f2);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.6px;
}

.nav__title {
  font-weight: 700;
  color: var(--blue-900);
}

.nav__subtitle {
  font-size: 12px;
  color: var(--gray-700);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: var(--blue-900);
}

.nav__links a {
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__links a:hover {
  background: rgba(18, 195, 216, 0.12);
  color: var(--blue-700);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(11, 42, 77, 0.14);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 10px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: var(--blue-900);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal), #0ea2ce);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(14, 162, 206, 0.25);
}

.btn--white {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-900);
  border: 1px solid rgba(11, 42, 77, 0.08);
}

.btn--ghost {
  border: 1px solid rgba(11, 42, 77, 0.18);
  color: var(--blue-900);
}
.btn--cta {
  background: linear-gradient(135deg, #11719f, #0b4f71);
  color: #f0f8ff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 30px;
  min-width: 240px;
  box-shadow: 0 18px 34px rgba(4, 18, 30, 0.45);
}
.btn--cta:hover {
  background: linear-gradient(135deg, #1b87b8, #0f5f84);
}

.hero {
  position: relative;
  min-height: 78vh;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(4, 14, 26, 0.95) 0%,
      rgba(7, 21, 37, 0.9) 45%,
      rgba(10, 28, 45, 0.88) 100%
    ),
    rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 32px 96px;
  text-align: center;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(32px, 4vw + 8px, 52px);
  margin: 14px 0;
  letter-spacing: -0.5px;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 18px;
  color: #e8f5ff;
}

.hero__actions {
  display: inline-flex;
  gap: 14px;
  margin-bottom: 24px;
}

.hero__stats {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  text-align: center;
}

.stat__number {
  display: block;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.stat__label {
  font-size: 13px;
  opacity: 0.9;
}

.stat--large .stat__number {
  font-size: 32px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px;
}

.section--tint {
  background: var(--gray-100);
  border-radius: 26px;
}

.section__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  font-size: 12px;
  color: var(--blue-700);
  margin: 0 0 8px;
}

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2vw + 10px, 36px);
  color: var(--blue-900);
}

.lede {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--stats {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--exports {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
#activities .grid--two {
  grid-template-columns: 1fr;
}

.card {
  background: var(--white);
  border: 1px solid rgba(11, 42, 77, 0.06);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.card--stat {
  display: flex;
  gap: 12px;
  align-items: center;
}

.card--stat h3 {
  margin: 0;
  color: var(--blue-900);
}

.card--stat p {
  margin: 4px 0 0;
  color: var(--gray-700);
}

.card--export {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
}

.card--export h3 {
  margin: 0 0 4px;
  color: var(--blue-900);
}

.card--export p {
  margin: 0;
  color: var(--gray-700);
}

.card--panel {
  padding: 22px;
}

.card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.card__media {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.card__media img[data-align="center"] {
  object-position: center;
}

.card--product h3 {
  margin: 0 0 8px;
  color: var(--blue-900);
}

.muted {
  color: var(--gray-700);
  margin: 0;
  line-height: 1.6;
}

.pill {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(18, 195, 216, 0.16);
  color: #e7faff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pill-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin: 14px 0 18px;
}

.species-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.species {
  border: 1px solid rgba(11, 42, 77, 0.08);
  border-radius: 14px;
  background: var(--gray-100);
  padding: 12px;
  overflow: hidden;
}

.species__header h4 {
  margin: 0 0 6px;
  color: var(--blue-900);
}

.species__header .muted {
  margin: 0;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 10px;
}

@media (max-width: 640px) {
  .media-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .media-tile {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 480px) {
  .media-strip {
    grid-template-columns: 1fr;
  }
}

.media-tile {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(11, 42, 77, 0.12);
  aspect-ratio: 3 / 2;
  min-height: 180px;
}

.media-tile img,
.media-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-tile video {
  background: #000;
}

.media-strip--placeholder {
  display: flex;
  align-items: center;
}

.placeholder-box {
  width: 100%;
  padding: 14px;
  border: 1px dashed rgba(12, 45, 87, 0.35);
  border-radius: 12px;
  text-align: center;
  color: var(--gray-700);
  background: var(--white);
}

.pill-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(11, 42, 77, 0.08);
  border-radius: 14px;
  background: var(--gray-100);
}

.pill-box--stack {
  flex-direction: column;
  align-items: flex-start;
}

.pill-box__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill-box__description {
  margin: 0;
  margin-bottom: 1em;
}

.highlight-box {
  margin-top: 16px;
  background: linear-gradient(
    135deg,
    rgba(18, 195, 216, 0.08),
    rgba(11, 42, 77, 0.05)
  );
  border: 1px dashed rgba(12, 45, 87, 0.25);
  border-radius: 16px;
  padding: 16px;
}

.highlight-box__header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.highlight-box__header strong {
  display: block;
  color: var(--blue-900);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.mini-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(11, 42, 77, 0.12);
}

@media (max-width: 640px) {
  .mini-gallery {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  .mini-gallery img {
    height: 90px;
  }
}

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

.list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--gray-100);
}

.list__item .list {
  margin-top: 12px;
}

.list__item .list.list--wide {
  background: none;
  border: 0;
}

.list__item .list.list--wide .list__item {
  background: var(--white);
}

.list--wide .list__item {
  background: var(--white);
  border: 1px solid rgba(11, 42, 77, 0.06);
}

@media (max-width: 900px) {
  .list__item .list {
    margin-left: -56px;
    width: calc(100% + 56px);
  }
}

.why-us__layout {
  display: block;
  margin-top: 32px;
}

.why-us__left {
  display: flex;
  flex-direction: column;
}

.media-slider {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(
    160deg,
    rgba(18, 195, 216, 0.12),
    rgba(11, 42, 77, 0.08)
  );
  border: 1px solid rgba(11, 42, 77, 0.06);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}

.media-slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.media-slider__header > *:first-child {
  flex: 1 1 220px;
}

.media-slider__header h3 {
  margin: 4px 0 6px;
  color: var(--blue-900);
}

.media-slider__header .muted {
  margin: 0;
}

.media-slider__eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-700);
}

.media-slider__viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.media-slider__viewport::-webkit-scrollbar {
  display: none;
}

.media-slide {
  scroll-snap-align: start;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.media-slide video,
.media-slide img {
  width: 100%;
  height: clamp(220px, 30vw, 320px);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 32px rgba(11, 42, 77, 0.18);
  border: 1px solid rgba(11, 42, 77, 0.08);
}

.media-slide video {
  background: #000;
}

.media-slide figcaption {
  margin: 0;
  font-weight: 600;
  color: var(--blue-900);
  font-size: 14px;
  line-height: 1.5;
}

.media-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.media-slider__btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(11, 42, 77, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-900);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11, 42, 77, 0.18);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.media-slider__btn:hover:not(:disabled) {
  background: var(--blue-900);
  color: var(--white);
  transform: translateY(-1px);
}

.media-slider__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--gray-100);
  border-radius: 999px;
  color: var(--blue-900);
  font-weight: 700;
  font-size: 13px;
}

.badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(18, 195, 216, 0.2),
    rgba(11, 42, 77, 0.08)
  );
  display: grid;
  place-items: center;
  font-size: 22px;
}

.icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  background: rgba(18, 195, 216, 0.14);
  display: grid;
  place-items: center;
  color: var(--blue-900);
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  font-size: 22px;
  line-height: 1;
}

.icon::after {
  content: attr(data-icon);
}

.gallery {
  display: grid;
  gap: 18px;
}

.gallery__block {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 42, 77, 0.06);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.gallery__header h3 {
  margin: 0 0 6px;
  color: var(--blue-900);
}

.gallery__header p {
  margin: 0 0 12px;
}

.gallery__strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.gallery__strip img {
  width: 100%;
  height: clamp(260px, 28vw, 320px);
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  scroll-snap-align: start;
  box-shadow: 0 12px 24px rgba(11, 42, 77, 0.12);
}
.gallery__strip img[data-align="center"] {
  object-position: center;
}

.cta {
  max-width: 1180px;
  margin: 40px auto 72px;
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(140deg, #0f3c6c, #0b2d54 50%, #0a2546 100%);
  color: var(--white);
  box-shadow: 0 22px 44px rgba(12, 45, 87, 0.3);
}

.cta__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-areas: "info panel";
  align-items: start;
  gap: 18px;
}
.cta__info {
  grid-area: info;
}

.cta .muted {
  color: #dfeaf7;
}
.eyebrow--light {
  color: #dfeaf7;
}
.cta__title {
  color: var(--white);
}
.cta__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  grid-area: panel;
}
.cta__actions {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 18px;
}
.cta__actions--left {
  justify-content: flex-start;
}
.cta__actions .btn {
  max-width: 320px;
  width: 100%;
}
.cta__contacts {
  width: 100%;
}
.cta__info p {
  margin: 0 0 10px;
}
.cta__contacts {
  margin-top: 4px;
  display: grid;
  gap: 12px;
}
.cta__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cta__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  font-weight: 700;
  color: #e7f4ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cta__badge-number {
  margin-left: auto;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.cta__contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cta__badge .icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  background: rgba(255, 255, 255, 0.12);
  color: #e7f4ff;
}
.cta__contact-link {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}
.cta__contact-link:hover,
.cta__contact-link:focus-visible {
  text-decoration: underline;
}
.cta__contact-link--pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
}
.cta__wa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 36px;
  padding: 0;
  border-radius: 12px;
}
.cta__wa-link .icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  background: transparent;
  color: #e7f4ff;
}
.btn--glow {
  box-shadow: 0 16px 36px rgba(4, 18, 30, 0.45);
}

.footer {
  background: #0c2d57;
  color: #e9f1f8;
  padding: 26px 28px 32px;
  border-radius: 24px 24px 0 0;
}

.footer__nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer__nav a {
  color: #e9f1f8;
}

.footer__meta {
  font-size: 14px;
  color: #cbd7e5;
}

@media (max-width: 900px) {
  .nav {
    padding: 12px 20px;
    position: sticky;
    top: 0;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .nav__links {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    background: var(--white);
    border: 1px solid rgba(11, 42, 77, 0.06);
    box-shadow: var(--shadow-soft);
    border-radius: 14px;
    padding: 14px;
    display: none;
    flex-direction: column;
    gap: 10px;
  }
  .nav[data-open="true"] .nav__links {
    display: flex;
  }
  .nav__links a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
  }
  .hero__content {
    padding: 100px 22px 80px;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .gallery__strip {
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-columns: unset;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .gallery__strip img {
    height: 260px;
    object-position: top;
  }
  .cta__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "panel";
    align-items: flex-start;
  }
  .cta__panel {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    border-radius: 0 0 18px 18px;
  }
  .nav__subtitle {
    display: none;
  }
  .section {
    padding: 56px 18px;
  }
  .card--export {
    padding: 16px;
  }
  .card__media {
    height: 180px;
  }
  .gallery__strip {
    grid-template-columns: 1fr;
  }
  .gallery__strip img {
    height: 240px;
    object-position: top;
  }
  .cta {
    padding: 22px 18px;
  }
  .cta__actions .btn {
    max-width: none;
    width: 100%;
    min-width: 0;
  }
  .cta__badge {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }
  .cta__badge-number {
    margin-left: 0;
    width: 100%;
  }
  .cta__wa-link {
    margin-left: 0;
  }
  .cta__contact:last-child .cta__badge {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "icon label label"
      ". number wa";
    gap: 8px 10px;
    align-items: center;
  }
  .cta__contact:last-child .cta__badge .icon {
    grid-area: icon;
  }
  .cta__contact:last-child .cta__badge span:not(.icon) {
    grid-area: label;
  }
  .cta__contact:last-child .cta__badge-number {
    grid-area: number;
    width: auto;
  }
  .cta__contact:last-child .cta__wa-link {
    grid-area: wa;
    margin-left: 0;
    justify-self: start;
  }
}
