/*==============================
    RESET
==============================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/*==============================
    HEADER
==============================*/

.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e8ecef;
  position: relative;
  z-index: 999;
}

/*==============================
    TOP LINE
==============================*/

.header-top-line {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #19a949, #7fc82c, #00a8a7, #0a67b5);
}

/*==============================
    HEADER CONTAINER
==============================*/

.header-container {
  width: 90%;
  max-width: 1400px;

  margin: auto;

  height: 130px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*==============================
    LOGO
==============================*/

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  width: 170px;
  height: 115px;

  object-fit: contain;
}

/*==============================
    NAVIGATION
==============================*/

.main-navigation {
  margin-left: auto;
}

.navigation-list {
  display: flex;
  align-items: center;

  gap: 45px;
}

.navigation-link {
  position: relative;

  color: #0d4f6d;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s;
}

.navigation-link:hover,
.navigation-link.active {
  color: #0a67b5;
}

.navigation-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -10px;

  width: 0;
  height: 3px;

  background: #1ba54a;

  transition: 0.3s;
}

.navigation-link:hover::after,
.navigation-link.active::after {
  width: 100%;
}

/*==============================
    HAMBURGER
==============================*/

.menu-toggle {
  display: none;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  width: 32px;
  height: 32px;

  padding: 0;
  margin: 0;

  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;

  cursor: pointer;

  -webkit-appearance: none;
  appearance: none;
}

.menu-toggle:focus,
.menu-toggle:focus-visible,
.menu-toggle:active {
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
}

.menu-toggle span {
  width: 28px;
  height: 3px;

  background: #0a67b5;

  border-radius: 30px;

  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/*==============================
    RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .header-container {
    height: 105px;
  }

  .site-logo img {
    width: 135px;
    height: 90px;
    object-fit: contain;
  }

  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;

    background: #fff;

    border-top: 1px solid #e8ecef;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .main-navigation.active {
    display: block;
  }

  .navigation-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;

    padding: 15px 25px 20px;
  }

  .navigation-list li {
    width: 100%;
  }

  .navigation-link {
    display: block;

    width: 100%;

    padding: 14px 0;

    font-size: 16px;
  }

  /* Remove desktop underline */

  .navigation-link::after {
    display: none;
  }

  /* Active mobile item */

  .navigation-link.active {
    color: #1ba54a;
    font-weight: 700;
  }
}

/*==============================
            FOOTER
==============================*/

.site-footer {
  margin-top: 100px;
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid #dfe6ea;
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;

  align-items: center;
}

.footer-logo {
  width: 170px;
  object-fit: contain;
}

.footer-column {
  color: #123f5b;
}

.footer-column h3 {
  margin-bottom: 18px;

  font-size: 22px;
  font-weight: 700;

  color: #0a67b5;
}

.footer-column p,
.footer-column a {
  display: block;

  color: #233746;

  font-size: 17px;
  font-weight: 600;

  line-height: 1.8;
}

.footer-column a {
  transition: 0.3s;
}

.footer-column a:hover {
  color: #19a949;
}

/*==============================
        RESPONSIVE FOOTER
==============================*/

@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-logo {
    margin: auto;
  }
}

/*==============================
    HERO
==============================*/

.hero {
  position: relative;

  width: 100%;
  height: calc(100vh - 135px);

  overflow: hidden;

  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 1400px;

  margin: auto;
}

.hero-text {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hero-text span {
  display: block;

  margin-bottom: 20px;

  color: #7fd13b;

  font-size: 18px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-text h1 {
  margin-bottom: 30px;

  color: #fff;

  font-size: clamp(50px, 6vw, 90px);
  font-weight: 800;
  line-height: 1.05;
}

.hero-text p {
  max-width: 700px;
  margin: 0 auto 45px;

  color: rgba(255, 255, 255, 0.92);

  font-size: 21px;
  line-height: 1.8;
  text-align: center;
}

.hero-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #19a949;

  color: #fff;

  font-size: 17px;
  font-weight: 700;

  border-radius: 6px;

  transition: 0.3s;
}

.hero-btn:hover {
  background: #0a67b5;

  transform: translateY(-3px);
}

/*==============================
    HERO RESPONSIVE
==============================*/

.hero {
  height: calc(100vh - 110px);

  text-align: center;
}

.hero-text {
  max-width: 100%;
}

.hero-text h1 {
  font-size: clamp(40px, 10vw, 60px);
}

.hero-text p {
  font-size: 18px;
}

.hero-btn {
  padding: 16px 34px;
}

/*==============================
            MISSION
==============================*/

.mission {
  padding: 110px 0;
  background: #ffffff;
}

.mission-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.mission-content {
  max-width: 980px;
}

.section-title {
  display: inline-block;

  margin-bottom: 20px;

  color: #19a949;

  font-size: 15px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 2px;
}

.mission-content h2 {
  max-width: 900px;

  margin-bottom: 55px;

  color: #123f5b;

  font-size: 30px;
  font-weight: 400;
  line-height: 1.6;
}

.mission-content p {
  max-width: 820px;

  color: #5f717d;

  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
}

/*==============================
RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .mission {
    padding: 70px 0;
  }

  .mission-content {
    max-width: 100%;
  }

  .section-title {
    margin-bottom: 16px;

    font-size: 14px;
  }

  .mission-content h2 {
    max-width: 100%;

    margin-bottom: 40px;

    font-size: 24px;
    line-height: 1.6;
  }

  .mission-content p {
    max-width: 100%;

    font-size: 17px;
    line-height: 1.8;
  }
}

/*==============================
        WHY BIOPLASTIX
==============================*/

.why-bioplastix {
  padding: 110px 0;
  background: #f7f8f8;
}

.why-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.why-title {
  margin-bottom: 60px;
  color: #123f5b;
  font-size: 46px;
  font-weight: 600;
}

.why-title span {
  color: #19a949;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  min-width: 0;
  padding: 38px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(18, 63, 91, 0.06);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(18, 63, 91, 0.1);
}

.why-icon {
  margin-bottom: 26px;
  color: #19a949;
  font-size: 38px;
  line-height: 1;
}

.why-card h3 {
  margin-bottom: 18px;
  color: #123f5b;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.why-card p {
  color: #526873;
  font-size: 16px;
  line-height: 1.8;
}

/*==============================
    WHY BIOPLASTIX RESPONSIVE
==============================*/

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-card {
    padding: 34px;
  }
}

@media (max-width: 991px) {
  .why-bioplastix {
    padding: 70px 0;
  }

  .why-title {
    margin-bottom: 40px;
    font-size: 34px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .why-card {
    padding: 32px;
  }

  .why-icon {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .why-card h3 {
    font-size: 21px;
  }

  .why-card p {
    font-size: 16px;
    line-height: 1.75;
  }
}

/*==============================
    SMALL MOBILE
==============================*/

@media (max-width: 650px) {
  .why-bioplastix {
    padding: 60px 0;
  }

  .why-title {
    margin-bottom: 32px;
    font-size: 29px;
    line-height: 1.3;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 30px 26px;
  }

  .why-icon {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .why-card h3 {
    margin-bottom: 14px;
    font-size: 21px;
  }

  .why-card p {
    font-size: 16px;
    line-height: 1.75;
  }
}

/*==============================
            VISION
==============================*/

.vision {
  padding: 110px 0;

  background: #f7f8f8;
}

.vision-container {
  width: 90%;
  max-width: 1400px;

  margin: auto;
}

.vision-content {
  max-width: 980px;
}

.vision-content h2 {
  max-width: 900px;

  margin-bottom: 55px;

  color: #123f5b;

  font-size: 30px;
  font-weight: 400;
  line-height: 1.6;
}

.vision-content p {
  max-width: 820px;

  color: #5f717d;

  font-size: 18px;
  line-height: 1.9;
}

/*==============================
        VISION RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .vision {
    padding: 70px 0;
  }

  .vision-content {
    max-width: 100%;
  }

  .vision-content h2 {
    max-width: 100%;

    margin-bottom: 40px;

    font-size: 24px;
    line-height: 1.6;
  }

  .vision-content p {
    max-width: 100%;

    font-size: 17px;
    line-height: 1.8;
  }
}

/*==============================
            STRATEGY
==============================*/

.strategy {
  padding: 110px 0;
  background: #ffffff;
}

.strategy-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.strategy-intro {
  max-width: 1050px;
  margin-bottom: 75px;
}

.strategy .section-title {
  display: inline-block;
  margin-bottom: 20px;

  color: #19a949;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.strategy-intro h2 {
  max-width: 900px;

  margin-bottom: 28px;

  color: #123f5b;

  font-size: 34px;
  font-weight: 500;
  line-height: 1.45;
}

.strategy-intro p {
  max-width: 980px;

  margin-bottom: 22px;

  color: #526873;

  font-size: 18px;
  line-height: 1.8;
}

.strategy-intro p:last-child {
  margin-bottom: 0;
}

/*==============================
        STRATEGY GRID
==============================*/

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/*==============================
        STRATEGY CARD
==============================*/

.strategy-card {
  padding: 35px;

  background: #ffffff;

  border: 1px solid #e4ebee;
  border-radius: 18px;

  transition: 0.35s;
}

.strategy-card:hover {
  transform: translateY(-6px);

  border-color: #19a949;

  box-shadow: 0 18px 40px rgba(18, 63, 91, 0.08);
}

/*==============================
        ICON
==============================*/

.strategy-icon {
  margin-bottom: 24px;

  color: #19a949;

  font-size: 34px;

  line-height: 1;
}

/*==============================
        TITLE
==============================*/

.strategy-card h3 {
  margin-bottom: 16px;

  color: #123f5b;

  font-size: 22px;
  font-weight: 700;

  line-height: 1.35;
}

/*==============================
        TEXT
==============================*/

.strategy-card p {
  color: #526873;

  font-size: 16px;

  line-height: 1.8;
}

/*==============================
    TABLET RESPONSIVE
==============================*/

@media (max-width: 1100px) {
  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
  }
}

/*==============================
        RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .strategy {
    padding: 70px 0;
  }

  .strategy-intro {
    max-width: 100%;

    margin-bottom: 50px;
  }

  .strategy .section-title {
    margin-bottom: 18px;

    font-size: 14px;
  }

  .strategy-intro h2 {
    max-width: 100%;

    margin-bottom: 24px;

    font-size: 28px;

    line-height: 1.5;
  }

  .strategy-intro p {
    max-width: 100%;

    font-size: 17px;

    line-height: 1.8;
  }

  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
  }

  .strategy-card {
    padding: 30px;
  }

  .strategy-icon {
    margin-bottom: 20px;

    font-size: 30px;
  }

  .strategy-card h3 {
    font-size: 20px;
  }

  .strategy-card p {
    font-size: 16px;
  }
}

/*==============================
        MOBILE
==============================*/

@media (max-width: 650px) {
  .strategy {
    padding: 60px 0;
  }

  .strategy-intro {
    margin-bottom: 40px;
  }

  .strategy-intro h2 {
    font-size: 24px;
  }

  .strategy-intro p {
    font-size: 16px;
  }

  .strategy-grid {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .strategy-card {
    padding: 28px 24px;
  }

  .strategy-icon {
    margin-bottom: 18px;

    font-size: 28px;
  }

  .strategy-card h3 {
    margin-bottom: 12px;

    font-size: 20px;
  }

  .strategy-card p {
    font-size: 16px;

    line-height: 1.75;
  }
}

/*==============================
        SAFETY
==============================*/

.safety {
  padding: 110px 0;

  background: #f7f8f8;
}

.safety-container {
  width: 90%;
  max-width: 1400px;

  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  align-items: center;
}

.safety-content {
  max-width: 620px;
}

.safety-content h2 {
  margin-bottom: 30px;

  color: #1f2328;

  font-size: 64px;
  font-weight: 700;

  line-height: 1.15;
}

.safety-content h2 span {
  color: #19a949;
}

.safety-content p {
  margin-bottom: 40px;

  color: #526873;

  font-size: 20px;

  line-height: 1.9;
}

.safety-btn {
  display: inline-block;

  color: #19a949;

  font-size: 18px;
  font-weight: 700;

  border-bottom: 2px solid #19a949;

  padding-bottom: 5px;

  transition: 0.3s;
}

.safety-btn:hover {
  color: #19a949;
}

.safety-image img {
  width: 100%;

  border-radius: 26px;

  display: block;

  object-fit: cover;
}

/*==============================
    SAFETY RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .safety {
    padding: 70px 0;
  }

  .safety-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .safety-content {
    max-width: 100%;
  }

  .safety-content h2 {
    font-size: 46px;
  }

  .safety-content p {
    font-size: 18px;
  }
}

@media (max-width: 650px) {
  .safety {
    padding: 60px 0;
  }

  .safety-content h2 {
    font-size: 38px;
  }

  .safety-content p {
    font-size: 17px;

    line-height: 1.8;
  }

  .safety-image img {
    border-radius: 18px;
  }
}

/*==============================
    SUSTAINABILITY HERO
==============================*/

.sustainability-hero {
  position: relative;

  min-height: 430px;

  display: flex;
  align-items: center;

  background: url("../img/sustainability-hero.jpeg") center center / cover
    no-repeat;

  overflow: hidden;
}

.sustainability-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(8, 35, 30, 0.58) 0%,
    rgba(8, 35, 30, 0.35) 55%,
    rgba(8, 35, 30, 0.18) 100%
  );
}

.sustainability-hero-container {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 1400px;

  margin: auto;
}

.sustainability-hero-content {
  max-width: 1000px;
}

.sustainability-hero-content h1 {
  margin-bottom: 18px;

  color: #ffffff;

  font-size: clamp(40px, 3.8vw, 58px);
  font-weight: 700;
  line-height: 1.2;
}

.sustainability-hero-content p {
  color: #ffffff;

  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 400;
  line-height: 1.4;
}

/*==============================
    RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .sustainability-hero {
    min-height: 360px;

    background-position: center;
  }

  .sustainability-hero-content {
    max-width: 100%;
  }

  .sustainability-hero-content h1 {
    margin-bottom: 15px;

    font-size: 42px;
  }

  .sustainability-hero-content p {
    font-size: 23px;
  }
}

@media (max-width: 650px) {
  .sustainability-hero {
    min-height: 300px;
  }

  .sustainability-hero-overlay {
    background: rgba(8, 35, 30, 0.5);
  }

  .sustainability-hero-content h1 {
    margin-bottom: 12px;

    font-size: 32px;
    line-height: 1.25;
  }

  .sustainability-hero-content p {
    font-size: 19px;
    line-height: 1.5;
  }
}

/*==============================
    SUSTAINABILITY INTRO
==============================*/

.sustainability-intro {
  padding: 100px 0;
  background: #f7f8f8;
}

.sustainability-intro-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.sustainability-intro-content {
  max-width: 1000px;
  margin: 0 auto 70px;
  text-align: center;
}

.sustainability-intro-content h2 {
  max-width: 900px;
  margin: 0 auto 25px;

  color: #1f2328;

  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

.sustainability-intro-content p {
  max-width: 900px;
  margin: auto;

  color: #526873;

  font-size: 18px;
  line-height: 1.85;
}

.sustainability-framework {
  max-width: 1050px;
  margin: auto;
}

.sustainability-framework img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

/*==============================
    SUSTAINABILITY INTRO RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .sustainability-intro {
    padding: 70px 0;
  }

  .sustainability-intro-content {
    max-width: 100%;
    margin-bottom: 50px;
  }

  .sustainability-intro-content h2 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.3;
  }

  .sustainability-intro-content p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.8;
  }

  .sustainability-framework {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .sustainability-intro {
    padding: 60px 0;
  }

  .sustainability-intro-content {
    margin-bottom: 40px;
  }

  .sustainability-intro-content h2 {
    margin-bottom: 20px;
    font-size: 29px;
    line-height: 1.35;
  }

  .sustainability-intro-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .sustainability-framework img {
    border-radius: 16px;
  }
}

/*==============================
    SUSTAINABILITY PRIORITIES
==============================*/

.sustainability-priorities {
  padding: 90px 0;

  background: #ffffff;
}

.priorities-container {
  width: 90%;
  max-width: 1400px;

  margin: auto;
}

/*==============================
    PRIORITY GROUP
==============================*/

.priority-group {
  display: grid;

  grid-template-columns: 30% 70%;

  gap: 45px;

  align-items: start;

  margin-bottom: 80px;
}

.priority-group:last-child {
  margin-bottom: 0;
}

/*==============================
    LEFT TITLE
==============================*/

.priority-heading h2 {
  color: #123f5b;

  font-size: 34px;
  font-weight: 600;

  line-height: 1.3;
}

/*==============================
    ACCORDIONS
==============================*/

.priority-accordions {
  width: 100%;
}

.priority-item {
  border-top: 1px solid #d8e1e5;
}

.priority-item:last-child {
  border-bottom: 1px solid #d8e1e5;
}

.priority-item summary {
  position: relative;

  padding: 22px 45px 22px 0;

  color: #123f5b;

  font-size: 18px;
  font-weight: 600;

  line-height: 1.45;

  cursor: pointer;

  list-style: none;

  transition: 0.3s;
}

.priority-item summary::-webkit-details-marker {
  display: none;
}

.priority-item summary:hover {
  color: #19a949;
}

.priority-item summary::after {
  content: "+";

  position: absolute;

  right: 3px;
  top: 50%;

  transform: translateY(-50%);

  color: #19a949;

  font-size: 26px;
  font-weight: 400;

  transition: 0.3s;
}

.priority-item[open] summary::after {
  content: "−";
}

/*==============================
    ANSWER
==============================*/

.priority-answer {
  padding: 0 45px 22px 0;
}

.priority-answer p {
  max-width: 820px;

  color: #526873;

  font-size: 16px;

  line-height: 1.75;
}

/*==============================
    TABLET
==============================*/

@media (max-width: 991px) {
  .sustainability-priorities {
    padding: 70px 0;
  }

  .priority-group {
    grid-template-columns: 1fr;

    gap: 22px;

    margin-bottom: 60px;
  }

  .priority-heading h2 {
    font-size: 28px;
  }

  .priority-item summary {
    padding: 20px 40px 20px 0;

    font-size: 17px;
  }

  .priority-answer {
    padding: 0 40px 20px 0;
  }

  .priority-answer p {
    max-width: 100%;

    font-size: 16px;
  }
}

/*==============================
    MOBILE
==============================*/

@media (max-width: 650px) {
  .sustainability-priorities {
    padding: 55px 0;
  }

  .priority-group {
    gap: 16px;

    margin-bottom: 45px;
  }

  .priority-heading h2 {
    font-size: 25px;
  }

  .priority-item summary {
    padding: 18px 34px 18px 0;

    font-size: 15px;

    line-height: 1.5;
  }

  .priority-item summary::after {
    right: 0;

    font-size: 22px;
  }

  .priority-answer {
    padding: 0 25px 18px 0;
  }

  .priority-answer p {
    font-size: 15px;

    line-height: 1.7;
  }
}

/*==============================
    SUSTAINABILITY REPORTING
==============================*/

.reporting-banner {
  position: relative;
  min-height: 390px;

  display: flex;
  align-items: center;

  background: url("../img/sustainability-reporting.jpeg") center center / cover
    no-repeat;

  overflow: hidden;
}

.reporting-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(8, 28, 24, 0.65) 0%,
    rgba(8, 28, 24, 0.35) 55%,
    rgba(8, 28, 24, 0.18) 100%
  );
}

.reporting-container {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.reporting-content {
  max-width: 900px;
}

.reporting-content h2 {
  margin-bottom: 14px;

  color: #ffffff;

  font-size: clamp(42px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.15;
}

.reporting-content p {
  color: #ffffff;

  font-size: clamp(22px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.4;
}

/*==============================
    REPORTING RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .reporting-banner {
    min-height: 340px;
  }

  .reporting-content {
    max-width: 100%;
  }

  .reporting-content h2 {
    font-size: 42px;
  }

  .reporting-content p {
    font-size: 23px;
  }
}

@media (max-width: 650px) {
  .reporting-banner {
    min-height: 290px;
  }

  .reporting-overlay {
    background: rgba(8, 28, 24, 0.5);
  }

  .reporting-content h2 {
    margin-bottom: 10px;
    font-size: 32px;
  }

  .reporting-content p {
    font-size: 19px;
    line-height: 1.5;
  }
}

/*==============================
    REPORTING INTRO
==============================*/

.reporting-intro {
  padding: 95px 0;

  background: #ffffff;
}

.reporting-intro-container {
  width: 90%;
  max-width: 1400px;

  margin: auto;
}

.reporting-intro p {
  max-width: 980px;

  color: #123f5b;

  font-size: 24px;
  font-weight: 400;

  line-height: 1.65;
}

/*==============================
    REPORTING INTRO RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .reporting-intro {
    padding: 70px 0;
  }

  .reporting-intro p {
    max-width: 100%;

    font-size: 21px;

    line-height: 1.65;
  }
}

@media (max-width: 650px) {
  .reporting-intro {
    padding: 55px 0;
  }

  .reporting-intro p {
    font-size: 18px;

    line-height: 1.7;
  }
}

/*==============================
        MATERIALITY
==============================*/

.materiality {
  padding: 100px 0;

  background: #f7f8f8;
}

.materiality-container {
  width: 90%;
  max-width: 1400px;

  margin: auto;

  display: grid;
  grid-template-columns: 28% 72%;

  gap: 60px;

  align-items: start;
}

/*==============================
        TITLE
==============================*/

.materiality-title h2 {
  color: #123f5b;

  font-size: 40px;
  font-weight: 600;

  line-height: 1.3;
}

/*==============================
        CONTENT
==============================*/

.materiality-content p {
  margin-bottom: 45px;

  color: #526873;

  font-size: 18px;

  line-height: 1.85;

  max-width: 950px;
}

.materiality-content img {
  width: 100%;
  max-width: 820px;

  display: block;

  border-radius: 20px;
}

/*==============================
    MATERIALITY RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .materiality {
    padding: 70px 0;
  }

  .materiality-container {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .materiality-title h2 {
    font-size: 30px;
  }

  .materiality-content p {
    margin-bottom: 35px;

    font-size: 17px;

    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .materiality {
    padding: 55px 0;
  }

  .materiality-title h2 {
    font-size: 26px;
  }

  .materiality-content p {
    margin-bottom: 25px;

    font-size: 16px;

    line-height: 1.75;
  }

  .materiality-content img {
    border-radius: 14px;
  }
}

/*==============================
            REPORTING
==============================*/

.reporting-section {
  padding: 95px 0;
  background: #ffffff;
}

.reporting-section-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 30% 70%;
  gap: 55px;

  align-items: start;
}

.reporting-section-intro {
  max-width: 360px;
}

.reporting-section-intro h2 {
  margin-bottom: 20px;

  color: #123f5b;

  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
}

.reporting-section-intro p {
  margin-bottom: 18px;

  color: #526873;

  font-size: 16px;
  line-height: 1.8;
}

.reporting-section-intro p:last-child {
  margin-bottom: 0;
}

/*==============================
        REPORTING ACCORDIONS
==============================*/

.reporting-accordions {
  width: 100%;
}

.reporting-item {
  border-top: 1px solid #d8e1e5;
}

.reporting-item:last-child {
  border-bottom: 1px solid #d8e1e5;
}

.reporting-item summary {
  position: relative;

  padding: 22px 45px 22px 0;

  color: #123f5b;

  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;

  cursor: pointer;
  list-style: none;

  transition: 0.3s;
}

.reporting-item summary::-webkit-details-marker {
  display: none;
}

.reporting-item summary:hover {
  color: #19a949;
}

.reporting-item summary::after {
  content: "+";

  position: absolute;
  top: 50%;
  right: 3px;

  color: #19a949;

  font-size: 26px;
  font-weight: 400;
  line-height: 1;

  transform: translateY(-50%);
}

.reporting-item[open] summary::after {
  content: "−";
}

.reporting-answer {
  padding: 0 45px 22px 0;
}

.reporting-answer p {
  max-width: 820px;

  color: #526873;

  font-size: 16px;
  line-height: 1.75;
}

/*==============================
        REPORTING RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .reporting-section {
    padding: 70px 0;
  }

  .reporting-section-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .reporting-section-intro {
    max-width: 100%;
  }

  .reporting-section-intro h2 {
    font-size: 28px;
  }

  .reporting-section-intro p {
    font-size: 16px;
  }

  .reporting-item summary {
    padding: 20px 40px 20px 0;
    font-size: 17px;
  }

  .reporting-answer {
    padding: 0 40px 20px 0;
  }
}

@media (max-width: 650px) {
  .reporting-section {
    padding: 55px 0;
  }

  .reporting-section-container {
    gap: 28px;
  }

  .reporting-section-intro h2 {
    margin-bottom: 16px;
    font-size: 25px;
  }

  .reporting-section-intro p {
    font-size: 15px;
    line-height: 1.75;
  }

  .reporting-item summary {
    padding: 18px 34px 18px 0;
    font-size: 15px;
  }

  .reporting-item summary::after {
    right: 0;
    font-size: 22px;
  }

  .reporting-answer {
    padding: 0 25px 18px 0;
  }

  .reporting-answer p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/*==============================
        CONTACT HERO
==============================*/

.contact-hero {
  position: relative;

  overflow: hidden;

  min-height: 430px;

  display: flex;
  align-items: center;

  background: linear-gradient(
    135deg,
    #0f5c7f 0%,
    #0b7b95 35%,
    #149b73 70%,
    #6fc53b 100%
  );
}

/*==============================
        OVERLAY
==============================*/

.contact-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.18),
    rgba(0, 0, 0, 0.08)
  );
}

/*==============================
        DECORATIVE PATTERN
==============================*/

.contact-pattern {
  position: absolute;

  top: -30px;
  right: -60px;

  width: 520px;
  height: 520px;

  opacity: 0.08;

  background: radial-gradient(circle, #ffffff 18%, transparent 19%) 0 0/95px
    95px;

  transform: rotate(-20deg);
}

/*==============================
        CONTENT
==============================*/

.contact-hero-container {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 1400px;

  margin: auto;
}

.contact-hero-content {
  max-width: 700px;
}

.contact-hero-content h1 {
  margin-bottom: 18px;

  color: #ffffff;

  font-size: clamp(46px, 4.5vw, 64px);
  font-weight: 700;

  line-height: 1.1;
}

.contact-hero-content p {
  max-width: 650px;

  color: #ffffff;

  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 400;

  line-height: 1.5;
}

/*==============================
        RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .contact-hero {
    min-height: 340px;
  }

  .contact-pattern {
    width: 340px;
    height: 340px;

    right: -80px;
  }

  .contact-hero-content {
    max-width: 100%;
  }

  .contact-hero-content h1 {
    font-size: 42px;
  }

  .contact-hero-content p {
    font-size: 20px;
  }
}

@media (max-width: 650px) {
  .contact-hero {
    min-height: 280px;
  }

  .contact-pattern {
    display: none;
  }

  .contact-hero-content h1 {
    margin-bottom: 14px;

    font-size: 34px;
  }

  .contact-hero-content p {
    font-size: 17px;

    line-height: 1.6;
  }
}

/*==============================
        CONTACT INFO
==============================*/

.contact-info {
  padding: 100px 0;

  background: #ffffff;
}

.contact-info-container {
  width: 90%;
  max-width: 1400px;

  margin: auto;
}

/*==============================
        HEADING
==============================*/

.section-heading {
  text-align: center;

  margin-bottom: 60px;
}

.section-heading h2 {
  margin-bottom: 15px;

  color: #123f5b;

  font-size: 42px;
  font-weight: 700;
}

.section-heading p {
  max-width: 650px;

  margin: auto;

  color: #526873;

  font-size: 18px;

  line-height: 1.8;
}

/*==============================
        CARDS
==============================*/

.contact-cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.contact-card {
  padding: 45px 35px;

  text-align: center;

  background: #ffffff;

  border: 1px solid #dfe8eb;

  border-radius: 20px;

  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);

  border-color: #19a949;

  box-shadow: 0 15px 35px rgba(18, 63, 91, 0.08);
}

/*==============================
        ICON
==============================*/

.contact-card i {
  margin-bottom: 22px;

  color: #19a949;

  font-size: 42px;
}

/*==============================
        TEXT
==============================*/

.contact-card h3 {
  margin-bottom: 18px;

  color: #123f5b;

  font-size: 24px;
  font-weight: 700;
}

.contact-card p,
.contact-card a {
  color: #526873;

  font-size: 17px;

  line-height: 1.8;

  transition: 0.3s;
}

.contact-card a:hover {
  color: #19a949;
}

/*==============================
    CONTACT INFO RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .contact-info {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .contact-cards {
    grid-template-columns: 1fr;

    gap: 22px;
  }
}

@media (max-width: 650px) {
  .contact-info {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .contact-card {
    padding: 35px 25px;
  }

  .contact-card h3 {
    font-size: 22px;
  }

  .contact-card i {
    font-size: 36px;
  }
}

/*==============================
        CAREER SECTION
==============================*/

.career-section {
  padding: 100px 0;
  background: #f7f8f8;
}

.career-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.career-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.career-heading .section-title {
  display: inline-block;
  margin-bottom: 14px;

  color: #19a949;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.career-heading h2 {
  margin-bottom: 16px;

  color: #123f5b;

  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
}

.career-heading p {
  color: #526873;

  font-size: 17px;
  line-height: 1.75;
}

/*==============================
        CAREER FORM
==============================*/

.career-form {
  padding: 45px;

  background: #ffffff;

  border: 1px solid #e0e8eb;
  border-radius: 22px;

  box-shadow: 0 12px 35px rgba(18, 63, 91, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 9px;

  color: #123f5b;

  font-size: 15px;
  font-weight: 700;
}

.form-group label span {
  color: #d92d20;
}

.form-group label .optional {
  color: #71838d;
  font-size: 13px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 14px 16px;

  color: #213b4a;
  background: #ffffff;

  font-family: inherit;
  font-size: 16px;

  border: 1px solid #ccd9de;
  border-radius: 8px;
  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #98a7ae;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #19a949;
  box-shadow: 0 0 0 3px rgba(25, 169, 73, 0.12);
}

.form-group input.input-error,
.form-group textarea.input-error {
  border-color: #d92d20;
}

.form-group input.input-error:focus,
.form-group textarea.input-error:focus {
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.1);
}

.form-error {
  min-height: 19px;
  margin-top: 7px;

  color: #d92d20;

  font-size: 13px;
  line-height: 1.45;
}

/*==============================
        FORM ACTIONS
==============================*/

.form-actions {
  margin-top: 30px;
}

.career-submit {
  padding: 15px 30px;

  color: #ffffff;
  background: #19a949;

  font-family: inherit;
  font-size: 16px;
  font-weight: 700;

  border: none;
  border-radius: 8px;

  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.career-submit:hover {
  background: #0a67b5;
  transform: translateY(-2px);
}

.form-success {
  display: none;

  margin-top: 18px;
  padding: 13px 16px;

  color: #176c35;
  background: #edf9f1;

  font-size: 15px;
  font-weight: 600;

  border: 1px solid #b9e2c5;
  border-radius: 8px;
}

.form-success.show {
  display: block;
}

/*==============================
        CAREER RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .career-section {
    padding: 70px 0;
  }

  .career-heading {
    margin-bottom: 40px;
  }

  .career-heading h2 {
    font-size: 32px;
  }

  .career-form {
    padding: 35px;
  }

  .form-grid {
    gap: 24px;
  }
}

@media (max-width: 650px) {
  .career-section {
    padding: 55px 0;
  }

  .career-heading {
    margin-bottom: 30px;
  }

  .career-heading h2 {
    font-size: 27px;
  }

  .career-heading p {
    font-size: 16px;
  }

  .career-form {
    padding: 27px 22px;
    border-radius: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-group-full {
    grid-column: auto;
  }

  .form-group input,
  .form-group textarea {
    font-size: 15px;
  }

  .career-submit {
    width: 100%;
  }
}

/*==============================
    PRODUCTS HERO
==============================*/

.products-hero {
  position: relative;

  min-height: 430px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: linear-gradient(
    135deg,
    #0f5c7f 0%,
    #0b7b95 35%,
    #149b73 70%,
    #6fc53b 100%
  );
}

.products-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.18),
    rgba(0, 0, 0, 0.08)
  );
}

.products-hero-container {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 1400px;

  margin: auto;
}

.products-hero-content {
  max-width: 800px;
}

.products-hero-content h1 {
  margin-bottom: 18px;

  color: #ffffff;

  font-size: clamp(46px, 4.5vw, 64px);
  font-weight: 700;

  line-height: 1.1;
}

.products-hero-content p {
  color: #ffffff;

  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 400;

  line-height: 1.5;
}

/*==============================
    RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .products-hero {
    min-height: 340px;
  }

  .products-hero-content {
    max-width: 100%;
  }

  .products-hero-content h1 {
    font-size: 42px;
  }

  .products-hero-content p {
    font-size: 20px;
  }
}

@media (max-width: 650px) {
  .products-hero {
    min-height: 280px;
  }

  .products-hero-content h1 {
    margin-bottom: 14px;

    font-size: 34px;
  }

  .products-hero-content p {
    font-size: 17px;

    line-height: 1.6;
  }
}

.products-overview-heading h2 {
  max-width: 950px;

  color: #123f5b;

  font-size: 44px;
  font-weight: 700;

  line-height: 1.2;
}

.products-overview-heading span {
  color: #19a949;
}

.products-overview-content {
  display: grid;

  grid-template-columns: 60% 40%;

  gap: 55px;

  align-items: center;
}

.products-overview-text h3 {
  margin-bottom: 18px;

  color: #123f5b;

  font-size: 34px;
  font-weight: 600;
}

.products-overview-text p {
  margin-bottom: 18px;

  color: #526873;

  font-size: 17px;

  line-height: 1.8;
}

/*==============================
        PRODUCTS OVERVIEW
==============================*/

.products-overview {
  padding: 100px 0;
  background: #ffffff;
}

.products-overview-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/*==============================
        TITLE
==============================*/

.products-overview-heading {
  margin-bottom: 45px;
}

.products-overview-heading h2 {
  max-width: 800px;

  color: #123f5b;

  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.products-overview-heading span {
  color: #19a949;
}

.products-overview-text {
  max-width: 520px;
}

.products-overview-image {
  justify-self: end;
}

.products-overview-image img {
  width: 100%;
  max-width: 700px;

  height: 430px;

  object-fit: cover;

  border-radius: 22px;
}

@media (max-width: 991px) {
  .products-overview {
    padding: 75px 0;
  }

  .products-overview-heading {
    margin-bottom: 35px;
  }

  .products-overview-heading h2 {
    font-size: 32px;
  }

  .products-overview-content {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .products-overview-text {
    max-width: 100%;
    order: 1;
  }

  .products-overview-image {
    justify-self: center;
    order: 2;
  }

  .products-overview-image img {
    width: 100%;
    max-width: 650px;
  }

  .products-overview-text h3 {
    font-size: 26px;
  }
}

/*==============================
        PRODUCT BENEFITS
==============================*/

.product-benefits {
  padding: 95px 0;
  background: #f7f8f8;
}

.product-benefits-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 30% 70%;
  gap: 55px;

  align-items: start;
}

/*==============================
        TITLE
==============================*/

.product-benefits-title h2 {
  max-width: 320px;

  color: #123f5b;

  font-size: 34px;
  font-weight: 600;
  line-height: 1.35;
}

/*==============================
        ACCORDIONS
==============================*/

.product-benefits-accordions {
  width: 100%;
}

.product-benefit-item {
  border-top: 1px solid #d8e1e5;
}

.product-benefit-item:last-child {
  border-bottom: 1px solid #d8e1e5;
}

.product-benefit-item summary {
  position: relative;

  padding: 22px 45px 22px 0;

  color: #123f5b;

  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;

  cursor: pointer;
  list-style: none;

  transition: color 0.25s ease;
}

.product-benefit-item summary::-webkit-details-marker {
  display: none;
}

.product-benefit-item summary:hover {
  color: #19a949;
}

.product-benefit-item summary::after {
  content: "+";

  position: absolute;
  top: 50%;
  right: 3px;

  color: #19a949;

  font-size: 26px;
  font-weight: 400;
  line-height: 1;

  transform: translateY(-50%);
}

.product-benefit-item[open] summary::after {
  content: "−";
}

/*==============================
        ANSWER
==============================*/

.product-benefit-answer {
  padding: 0 45px 22px 0;
}

.product-benefit-answer p {
  max-width: 820px;

  color: #526873;

  font-size: 16px;
  line-height: 1.75;
}

/*==============================
        RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .product-benefits {
    padding: 70px 0;
  }

  .product-benefits-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-benefits-title h2 {
    max-width: 100%;
    font-size: 29px;
  }

  .product-benefit-item summary {
    padding: 20px 40px 20px 0;
    font-size: 17px;
  }

  .product-benefit-answer {
    padding: 0 40px 20px 0;
  }
}

@media (max-width: 650px) {
  .product-benefits {
    padding: 55px 0;
  }

  .product-benefits-container {
    gap: 20px;
  }

  .product-benefits-title h2 {
    font-size: 25px;
  }

  .product-benefit-item summary {
    padding: 18px 34px 18px 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .product-benefit-item summary::after {
    right: 0;
    font-size: 22px;
  }

  .product-benefit-answer {
    padding: 0 25px 18px 0;
  }

  .product-benefit-answer p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/*==============================
        APPLICATIONS
==============================*/

.applications {
  padding: 100px 0;
  background: #ffffff;
}

.applications-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/*==============================
        TITLE
==============================*/

.applications-title {
  margin-bottom: 50px;
  text-align: center;
}

.applications-title h2 {
  color: #123f5b;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
}

/*==============================
        GRID
==============================*/

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/*==============================
        CARD
==============================*/

.application-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;

  background: #ffffff;

  border: 1px solid #dfe8eb;
  border-radius: 20px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.application-card:hover {
  transform: translateY(-5px);
  border-color: #19a949;
  box-shadow: 0 16px 35px rgba(18, 63, 91, 0.08);
}

/*==============================
        IMAGE
==============================*/

/* Works whether the image is wrapped
   inside .application-image or placed
   directly inside .application-card */

.application-image {
  width: 100%;
  height: 245px;
  overflow: hidden;
  background: #f5f7f8;
}

.application-image img,
.application-card > img {
  display: block;
  width: 100%;
  height: 245px;

  object-fit: cover;
  object-position: center;

  flex-shrink: 0;
}

/*==============================
        CONTENT
==============================*/

.application-content {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 28px;
}

.application-content h3 {
  margin-bottom: 20px;

  color: #123f5b;

  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.application-content ul {
  margin: 0;
  padding-left: 20px;
}

.application-content li {
  margin-bottom: 14px;

  color: #526873;

  font-size: 15px;
  line-height: 1.7;
}

.application-content li:last-child {
  margin-bottom: 0;
}

.application-content strong {
  color: #123f5b;
}

/*==============================
        TABLET
==============================*/

@media (max-width: 991px) {
  .applications {
    padding: 70px 0;
  }

  .applications-container {
    width: 94%;
    max-width: 760px;
  }

  .applications-title {
    margin-bottom: 32px;
  }

  .applications-title h2 {
    font-size: 30px;
  }

  .applications-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .application-card {
    width: 100%;
    max-width: 700px;
    margin: auto;

    border-radius: 18px;
  }

  .application-image,
  .application-card > img {
    height: 260px;
  }

  .application-image img {
    height: 260px;
  }

  .application-content {
    padding: 24px;
  }

  .application-content h3 {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .application-content li {
    margin-bottom: 11px;
    font-size: 14px;
    line-height: 1.65;
  }
}

/*==============================
        MOBILE
==============================*/

@media (max-width: 650px) {
  .applications {
    padding: 55px 0;
  }

  .applications-container {
    width: 94%;
    max-width: 560px;
  }

  .applications-title {
    margin-bottom: 26px;
  }

  .applications-title h2 {
    font-size: 25px;
    line-height: 1.3;
  }

  .applications-grid {
    gap: 20px;
  }

  .application-card {
    width: 100%;
    max-width: 520px;

    border-radius: 16px;
  }

  .application-image,
  .application-card > img {
    height: 210px;
  }

  .application-image img {
    height: 210px;
  }

  .application-content {
    padding: 20px;
  }

  .application-content h3 {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .application-content ul {
    padding-left: 17px;
  }

  .application-content li {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.65;
  }
}

/*==============================
    RECYCLABILITY SECTION
==============================*/

.recycling-section {
  padding: 110px 0;
  background: #fff;
}

.recycling-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/*==============================
    TITLE
==============================*/

.section-heading {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 20px;
  color: #123f5b;
  font-size: 42px;
  font-weight: 700;
}

.section-heading p {
  color: #526873;
  font-size: 18px;
  line-height: 1.9;
}

/*==============================
    ITEMS
==============================*/

.recycling-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}

.recycling-item:last-child {
  margin-bottom: 0;
}

.recycling-item.reverse .recycling-image {
  order: 2;
}

.recycling-item.reverse .recycling-content {
  order: 1;
}

.recycling-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.recycling-content h3 {
  margin-bottom: 22px;
  color: #123f5b;
  font-size: 34px;
  font-weight: 700;
}

.recycling-content p {
  margin-bottom: 18px;
  color: #526873;
  font-size: 17px;
  line-height: 1.85;
}

.recycling-content p:last-child {
  margin-bottom: 0;
}

/*==============================
    RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .recycling-section {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 55px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .recycling-item {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 70px;
  }

  .recycling-image {
    order: 2 !important;
  }

  .recycling-content {
    order: 1 !important;
  }

  .recycling-content h3 {
    font-size: 28px;
  }

  .recycling-content p {
    font-size: 16px;
  }
}

@media (max-width: 650px) {
  .recycling-section {
    padding: 60px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.8;
  }

  .recycling-item {
    gap: 28px;
    margin-bottom: 55px;
  }

  .recycling-image img {
    border-radius: 16px;
  }

  .recycling-content h3 {
    margin-bottom: 16px;
    font-size: 24px;
  }

  .recycling-content p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
  }
}

/*==============================
    TEXTILE INTRO
==============================*/

.textile-intro {
  padding: 110px 0;

  background: #f7f9f8;
}

.textile-intro-container {
  width: 90%;
  max-width: 950px;

  margin: auto;

  text-align: center;
}

.section-label {
  display: inline-block;

  margin-bottom: 20px;

  padding: 10px 22px;

  background: #e8f7ee;

  color: #19a949;

  font-size: 15px;
  font-weight: 600;

  border-radius: 50px;

  letter-spacing: 0.5px;
}

.textile-intro h2 {
  margin-bottom: 28px;

  color: #123f5b;

  font-size: 46px;
  font-weight: 700;

  line-height: 1.25;
}

.textile-intro h2 span {
  color: #19a949;
}

.textile-intro p {
  max-width: 780px;

  margin: auto;

  color: #526873;

  font-size: 18px;

  line-height: 1.9;
}

/*==============================
    RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .textile-intro {
    padding: 80px 0;
  }

  .textile-intro h2 {
    font-size: 36px;
  }

  .textile-intro p {
    font-size: 16px;
  }
}

@media (max-width: 650px) {
  .textile-intro {
    padding: 60px 0;
  }

  .section-label {
    font-size: 14px;

    padding: 8px 18px;
  }

  .textile-intro h2 {
    margin-bottom: 20px;

    font-size: 28px;
  }

  .textile-intro p {
    font-size: 15px;

    line-height: 1.8;
  }
}

/*==============================
    TEXTILE TECHNOLOGY
==============================*/

.textile-technology {
  padding: 110px 0;
  background: #ffffff;
}

.textile-technology-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */

.textile-technology-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

/* CONTENT */

.textile-technology-content h2 {
  margin-bottom: 24px;

  color: #123f5b;

  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}

.textile-technology-content h2 span {
  color: #19a949;
}

.textile-technology-content p {
  margin-bottom: 18px;

  color: #526873;

  font-size: 17px;
  line-height: 1.9;
}

.textile-technology-content p:last-child {
  margin-bottom: 0;
}

/*==============================
    TABLET
==============================*/

@media (max-width: 991px) {
  .textile-technology {
    padding: 75px 0;
  }

  .textile-technology-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  /* Text first, image second */

  .textile-technology-content {
    order: 1;
  }

  .textile-technology-image {
    order: 2;
  }

  .textile-technology-content h2 {
    font-size: 34px;
  }

  .textile-technology-content p {
    font-size: 16px;
  }
}

/*==============================
    MOBILE
==============================*/

@media (max-width: 650px) {
  .textile-technology {
    padding: 60px 0;
  }

  .textile-technology-container {
    gap: 28px;
  }

  .textile-technology-image img {
    border-radius: 16px;
  }

  .textile-technology-content h2 {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .textile-technology-content p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
  }
}

/*==============================
        WHY THIS MATTERS
==============================*/

.technology-benefits {
  padding: 100px 0;
  background: #f7f8f8;
}

.technology-benefits-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/*==============================
        TITLE
==============================*/

.technology-benefits-title {
  margin-bottom: 55px;
}

.technology-benefits-title h2 {
  color: #123f5b;

  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

/*==============================
        GRID
==============================*/

.technology-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/*==============================
        CARDS
==============================*/

.technology-benefit-card {
  min-width: 0;
  height: 100%;

  padding: 34px;

  background: #ffffff;

  border: 1px solid #e1e8eb;
  border-radius: 20px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.technology-benefit-card:hover {
  transform: translateY(-5px);

  border-color: #19a949;

  box-shadow: 0 16px 38px rgba(18, 63, 91, 0.08);
}

/*==============================
        ICONS
==============================*/

.technology-benefit-icon {
  margin-bottom: 24px;

  color: #19a949;

  font-size: 32px;
  line-height: 1;
}

/*==============================
        CARD CONTENT
==============================*/

.technology-benefit-card h3 {
  margin-bottom: 14px;

  color: #123f5b;

  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.technology-benefit-card p {
  color: #526873;

  font-size: 15px;
  line-height: 1.75;
}

.technology-benefit-card ul {
  margin-top: 16px;
  padding-left: 20px;
}

.technology-benefit-card li {
  margin-bottom: 9px;

  color: #526873;

  font-size: 15px;
  line-height: 1.7;
}

.technology-benefit-card li:last-child {
  margin-bottom: 0;
}

/*==============================
        RESPONSIVE
==============================*/

@media (max-width: 991px) {
  .technology-benefits {
    padding: 70px 0;
  }

  .technology-benefits-title {
    margin-bottom: 38px;
  }

  .technology-benefits-title h2 {
    font-size: 32px;
  }

  .technology-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .technology-benefit-card {
    padding: 28px;
  }

  .technology-benefit-icon {
    margin-bottom: 20px;
    font-size: 29px;
  }

  .technology-benefit-card h3 {
    font-size: 19px;
  }

  .technology-benefit-card p,
  .technology-benefit-card li {
    font-size: 14px;
    line-height: 1.7;
  }
}

/*==============================
        SMALL MOBILE
==============================*/

@media (max-width: 650px) {
  .technology-benefits {
    padding: 55px 0;
  }

  .technology-benefits-container {
    width: 94%;
  }

  .technology-benefits-title {
    margin-bottom: 30px;
  }

  .technology-benefits-title h2 {
    font-size: 27px;
  }

  .technology-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .technology-benefit-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .technology-benefit-icon {
    margin-bottom: 16px;
    font-size: 25px;
  }

  .technology-benefit-card h3 {
    margin-bottom: 11px;

    font-size: 16px;
    line-height: 1.35;
  }

  .technology-benefit-card p,
  .technology-benefit-card li {
    font-size: 12px;
    line-height: 1.6;
  }

  .technology-benefit-card ul {
    margin-top: 12px;
    padding-left: 16px;
  }

  .technology-benefit-card li {
    margin-bottom: 7px;
  }
}

/*==============================
        BENEFITS
==============================*/

.textile-benefits {
  padding: 110px 0;
  background: #ffffff;
}

.textile-benefits-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 70px;
  align-items: start;
}

/*==============================
        TITLE
==============================*/

.textile-benefits-title h2 {
  color: #123f5b;

  font-size: 44px;
  font-weight: 700;

  line-height: 1.25;
}

/*==============================
        ACCORDION
==============================*/

.textile-benefits-accordion {
  width: 100%;
}

.benefit-item {
  border-top: 1px solid #d8e0e4;
}

.benefit-item:last-child {
  border-bottom: 1px solid #d8e0e4;
}

.benefit-item summary {
  position: relative;

  padding: 28px 55px 28px 0;

  list-style: none;
  cursor: pointer;

  color: #123f5b;

  font-size: 18px;
  font-weight: 600;

  transition: 0.3s;
}

.benefit-item summary:hover {
  color: #19a949;
}

.benefit-item summary::-webkit-details-marker {
  display: none;
}

/*==============================
        PLUS / MINUS
==============================*/

.benefit-item summary::after {
  content: "+";

  position: absolute;

  right: 0;
  top: 50%;

  transform: translateY(-50%);

  color: #19a949;

  font-size: 28px;
  font-weight: 300;

  transition: 0.3s;
}

.benefit-item[open] summary::after {
  content: "−";
}

/*==============================
        CONTENT
==============================*/

.benefit-content {
  padding: 0 0 24px;
}

.benefit-content p {
  max-width: 900px;

  color: #526873;

  font-size: 16px;

  line-height: 1.9;
}

/*==============================
        TABLET
==============================*/

@media (max-width: 991px) {
  .textile-benefits {
    padding: 75px 0;
  }

  .textile-benefits-container {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .textile-benefits-title h2 {
    font-size: 34px;
  }

  .benefit-item summary {
    padding: 22px 45px 22px 0;

    font-size: 17px;
  }

  .benefit-content p {
    font-size: 15px;
  }
}

/*==============================
        MOBILE
==============================*/

@media (max-width: 650px) {
  .textile-benefits {
    padding: 60px 0;
  }

  .textile-benefits-container {
    gap: 22px;
  }

  .textile-benefits-title h2 {
    font-size: 28px;
  }

  .benefit-item summary {
    padding: 18px 38px 18px 0;

    font-size: 16px;
    line-height: 1.5;
  }

  .benefit-item summary::after {
    font-size: 24px;
  }

  .benefit-content {
    padding-bottom: 18px;
  }

  .benefit-content p {
    font-size: 14px;

    line-height: 1.8;
  }
}
