/* --- Reset & Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Syne", sans-serif;
  background-color: #eef1f8;
  overflow-x: hidden;
  color: #1a2236;
  letter-spacing: -0.2px;
}

/* --- Header / Navigation --- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 80px;
  z-index: 10;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a2236;
  max-width: 220px;
  line-height: 1.3;
}

/* --- Mobile Menu Toggle (hamburger) --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 20;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #1a2236;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  flex-wrap: wrap;
}

nav ul li a {
  text-decoration: none;
  color: #1a2236;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

nav ul li a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

nav ul li a:hover {
  opacity: 0.7;
}

.nav-cta {
  background-color: #1a3a5c;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.nav-cta:hover {
  background-color: #122b45;
  transform: translateY(-1px);
}

/* --- Main Hero Container --- */
.hero-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* --- Left Side Content --- */
.left-panel {
  width: 50%;
  background-color: #e4eaf5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 70px 70px 70px;
  text-align: center;
}

.main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 300;
  color: #1a2236;
  margin-bottom: 45px;
  line-height: 0.95;
  letter-spacing: -1px;
}

.gallery-wrapper {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 60px;
  max-width: 460px;
}

.gallery-img {
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(26, 34, 54, 0.1);
  border-radius: 4px;
}

.img-shower {
  width: 220px;
  height: 330px;
  margin-top: 40px;
}

.img-faucet-small {
  width: 220px;
  height: 300px;
}

.description {
  font-size: 24px;
  line-height: 1.6;
  max-width: 540px;
  color: #4a5568;
  margin-bottom: 45px;
  font-weight: 400;
}

.btn-learn {
  background-color: #1a3a5c;
  color: #ffffff;
  border: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-weight: 600;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.btn-learn:hover {
  background-color: #122b45;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid #1a3a5c;
  color: #1a3a5c;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 20px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.btn-outline:hover {
  background-color: #1a3a5c;
  color: #fff;
}

/* --- Right Side Hero Image --- */
.right-panel {
  width: 50%;
  position: relative;
  background-color: #7a8faa;
}

.main-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 60px;
  left: -40px;
  background: #fff;
  padding: 24px 32px;
  box-shadow: 0 10px 40px rgba(26, 34, 54, 0.12);
  border-radius: 4px;
  text-align: center;
  z-index: 3;
}

.badge-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 500;
  color: #1a3a5c;
  line-height: 1;
}

.badge-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #727a84;
  font-weight: 600;
  margin-top: 8px;
  display: block;
}

/* --- Stats Banner --- */
.stats-banner {
  background-color: #1a3a5c;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 100px;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 260px;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
}

.stat-desc {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 50px;
}

/* --- About Us Section --- */
.about-section {
  display: flex;
  background-color: #f4f6fb;
  padding: 160px 100px;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.about-visual {
  width: 45%;
  position: relative;
}

.about-bg-block {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 80%;
  height: 110%;
  background-color: #d9e2f0;
  z-index: 1;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 45px rgba(26, 34, 54, 0.1);
  border-radius: 2px;
}

.about-content {
  width: 50%;
  max-width: 580px;
}

.about-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #7a8faa;
  margin-bottom: 24px;
  display: block;
  font-weight: 700;
}

.about-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 62px;
  font-weight: 300;
  color: #1a2236;
  margin-bottom: 35px;
  line-height: 1.1;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 28px;
}

/* --- Services Matrix Section --- */
.matrix-section {
  background-color: #d9e2f0;
  padding: 160px 100px;
  display: flex;
  align-items: stretch;
  gap: 70px;
}

.matrix-title-column {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.matrix-large-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 220px;
  color: rgba(26, 58, 92, 0.1);
  line-height: 0.7;
  margin-top: auto;
}

.matrix-content-column {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  border-left: 1px solid rgba(26, 34, 54, 0.15);
  padding-left: 80px;
}

.matrix-row {
  display: flex;
  gap: 60px;
}

.matrix-block {
  width: 50%;
}

.matrix-block h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  color: #1a2236;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.1;
}

.matrix-block p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a5568;
}

/* --- Loan Profiles Section --- */
.profile-section {
  display: flex;
  background-color: #f4f6fb;
  align-items: center;
}

.profile-image-block {
  width: 50%;
  height: 700px;
  position: relative;
}

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

.profile-content-block {
  width: 50%;
  padding: 120px 100px;
}

.profile-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.profile-item {
  border-bottom: 1px solid rgba(26, 34, 54, 0.1);
  padding-bottom: 30px;
}

.profile-item-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: #1a2236;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.1;
}

.profile-item-desc {
  font-size: 16px;
  color: #7a8faa;
  line-height: 1.65;
}

/* --- How It Works Section --- */
.texture-section {
  background-color: #eef1f8;
  padding: 160px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.texture-info {
  width: 40%;
}

.texture-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 300;
  color: #1a2236;
  line-height: 1.05;
  margin-bottom: 35px;
}

.texture-para {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
}

.texture-display {
  width: 55%;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tex-box {
  position: absolute;
  box-shadow: 0 10px 35px rgba(26, 34, 54, 0.08);
  transition: transform 0.4s ease;
}

.tex-box:hover {
  transform: translateY(-6px);
}

.tex-box-0 {
  width: 180px;
  height: 180px;
  background-color: #d9e2f0;
  left: 3%;
  top: 20px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.tex-box-1 {
  width: 260px;
  height: 320px;
  background-color: #1a3a5c;
  left: 22%;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: #ffffff;
}

.tex-box-2 {
  width: 240px;
  height: 280px;
  background-color: #7a8faa;
  right: 10%;
  bottom: -20px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding: 30px;
  color: #1a2236;
}

.tex-box-3 {
  width: 200px;
  height: 200px;
  background-color: #d9e2f0;
  right: 3%;
  top: -40px;
  z-index: 1;
}

.tex-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  font-weight: 600;
  color: #fff;
}

.tex-label-dark {
  color: #1a2236;
}

.tex-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  margin-top: 6px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.tex-title-dark {
  color: #1a2236;
}

/* --- Apply CTA Section --- */
.apply-section {
  background-color: #1a3a5c;
  padding: 140px 100px;
}

.apply-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.apply-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 24px;
}

.apply-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 60px;
}

.btn-apply {
  background-color: #c8a96e;
  color: #1a2236;
  border: none;
  padding: 18px 48px;
  border-radius: 4px;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-weight: 700;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.btn-apply:hover {
  background-color: #b8924e;
  transform: translateY(-2px);
}

/* --- Editorial Footer --- */
.editorial-footer {
  background-color: #111827;
  padding: 160px 100px 80px 100px;
  position: relative;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  right: -20px;
  top: -60px;
  font-family: "Cormorant Garamond", serif;
  font-size: 360px;
  font-weight: 400;
  color: rgba(219, 225, 241, 0.02);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.footer-main-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
}

.footer-brand-block {
  width: 35%;
}

.footer-brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.footer-brand-sub {
  font-size: 15px;
  color: #7a8faa;
  max-width: 320px;
  line-height: 1.7;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}

.footer-matrix-block {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  gap: 90px;
}

.matrix-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.matrix-column-head {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c8a96e;
  font-weight: 700;
}

.matrix-column-content {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2.2;
}

.footer-frame-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(200, 169, 110, 0.3),
    rgba(200, 169, 110, 0.03)
  );
  margin-bottom: 40px;
  position: relative;
}

.footer-frame-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  background-color: #c8a96e;
  border-radius: 50%;
}

.footer-base-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-meta-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4a5568;
  font-weight: 500;
}

/* --- Responsive Styles --- */

/* Tablets & smaller laptops */
@media (max-width: 1024px) {
  header {
    padding: 30px 40px;
  }
  .left-panel {
    padding: 130px 40px 60px 40px;
  }
  .main-title {
    font-size: 64px;
  }
  .gallery-wrapper {
    gap: 16px;
    max-width: 400px;
  }
  .img-shower {
    width: 180px;
    height: 270px;
    margin-top: 30px;
  }
  .img-faucet-small {
    width: 180px;
    height: 250px;
  }
  .description {
    font-size: 20px;
    max-width: 460px;
  }
  .hero-badge {
    left: 20px;
    bottom: 30px;
    padding: 18px 24px;
  }
  .badge-num {
    font-size: 40px;
  }
  .stats-banner {
    padding: 40px 50px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    flex: 1 1 30%;
    max-width: 200px;
  }
  .about-section {
    padding: 100px 40px;
    gap: 50px;
  }
  .about-heading {
    font-size: 48px;
  }
  .about-img {
    height: 400px;
  }
  .matrix-section {
    padding: 100px 40px;
    gap: 40px;
  }
  .matrix-large-num {
    font-size: 160px;
  }
  .matrix-content-column {
    padding-left: 40px;
    gap: 50px;
  }
  .matrix-row {
    gap: 40px;
  }
  .matrix-block h3 {
    font-size: 32px;
  }
  .profile-content-block {
    padding: 80px 40px;
  }
  .texture-section {
    padding: 100px 40px;
    gap: 40px;
  }
  .texture-heading {
    font-size: 48px;
  }
  .apply-section {
    padding: 100px 40px;
  }
  .apply-heading {
    font-size: 56px;
  }
  .editorial-footer {
    padding: 100px 40px 60px 40px;
  }
  .footer-matrix-block {
    gap: 50px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  header {
    padding: 20px 24px;
    position: relative;
    background-color: #eef1f8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .logo {
    font-size: 18px;
    max-width: 150px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #eef1f8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 24px;
    transform: scaleY(0);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
    border-top: 1px solid rgba(26, 34, 54, 0.06);
  }

  nav.open {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    white-space: normal;
    border-bottom: 1px solid rgba(26, 34, 54, 0.05);
  }

  nav ul li:last-child a {
    border-bottom: none;
  }

  .nav-cta {
    display: none;
  }

  /* Hero section - mobile */
  .hero-container {
    flex-direction: column;
    min-height: auto;
  }

  .left-panel {
    width: 100%;
    padding: 40px 24px 40px 24px;
    background-color: #e4eaf5;
    order: 1;
  }

  .right-panel {
    width: 100%;
    height: 400px;
    order: 0;
    background-color: #7a8faa;
  }

  .main-title {
    font-size: 44px;
    margin-bottom: 30px;
    line-height: 1.05;
  }

  .gallery-wrapper {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin-bottom: 40px;
    gap: 16px;
  }

  .img-shower {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 2/3;
    margin-top: 0;
  }

  .img-faucet-small {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 3/4;
  }

  .description {
    font-size: 18px;
    max-width: 100%;
    margin-bottom: 30px;
    padding: 0 8px;
  }

  .btn-learn {
    padding: 16px 40px;
    font-size: 13px;
  }

  .hero-badge {
    left: 16px;
    bottom: 20px;
    padding: 14px 20px;
  }

  .badge-num {
    font-size: 32px;
  }

  .badge-label {
    font-size: 11px;
    margin-top: 4px;
  }

  /* Stats - mobile */
  .stats-banner {
    padding: 40px 20px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-item {
    flex: 1 1 40%;
    max-width: 140px;
  }

  .stat-num {
    font-size: 32px;
  }

  .stat-desc {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-top: 4px;
  }

  /* About - mobile */
  .about-section {
    flex-direction: column-reverse;
    padding: 60px 24px;
    gap: 40px;
  }

  .about-visual {
    width: 100%;
  }

  .about-bg-block {
    display: none;
  }

  .about-img {
    height: 280px;
  }

  .about-content {
    width: 100%;
    max-width: 100%;
  }

  .about-heading {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .btn-outline {
    padding: 12px 32px;
    font-size: 13px;
  }

  /* Matrix - mobile */
  .matrix-section {
    flex-direction: column;
    padding: 60px 24px;
    gap: 30px;
  }

  .matrix-title-column {
    width: 100%;
  }

  .matrix-large-num {
    font-size: 80px;
    margin-top: 10px;
  }

  .matrix-content-column {
    width: 100%;
    border-left: none;
    padding-left: 0;
    gap: 40px;
  }

  .matrix-row {
    flex-direction: column;
    gap: 40px;
  }

  .matrix-block {
    width: 100%;
  }

  .matrix-block h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .matrix-block p {
    font-size: 15px;
  }

  /* Profile - mobile */
  .profile-section {
    flex-direction: column;
  }

  .profile-image-block {
    width: 100%;
    height: 300px;
  }

  .profile-content-block {
    width: 100%;
    padding: 60px 24px;
  }

  .profile-list {
    margin-top: 30px;
    gap: 30px;
  }

  .profile-item-title {
    font-size: 26px;
  }

  .profile-item-desc {
    font-size: 15px;
  }

  /* Texture/How it works - mobile */
  .texture-section {
    flex-direction: column;
    padding: 60px 24px;
    gap: 40px;
  }

  .texture-info {
    width: 100%;
  }

  .texture-heading {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .texture-para {
    font-size: 16px;
  }

  .texture-display {
    width: 100%;
    height: 340px;
    margin-top: 0;
  }

  .tex-box-0 {
    width: 100px;
    height: 100px;
    left: 2%;
    top: 10px;
    padding: 16px;
  }
  .tex-box-1 {
    width: 160px;
    height: 220px;
    left: 18%;
    top: 0;
    padding: 20px;
  }
  .tex-box-2 {
    width: 140px;
    height: 180px;
    right: 2%;
    bottom: 0;
    padding: 20px;
  }
  .tex-box-3 {
    width: 100px;
    height: 100px;
    right: 5px;
    top: -10px;
  }
  .tex-title {
    font-size: 22px;
  }
  .tex-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  /* Apply - mobile */
  .apply-section {
    padding: 60px 24px;
  }

  .apply-heading {
    font-size: 36px;
  }

  .apply-sub {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .btn-apply {
    padding: 14px 32px;
    font-size: 13px;
  }

  /* Footer - mobile */
  .editorial-footer {
    padding: 60px 24px 40px 24px;
  }

  .footer-watermark {
    display: none;
  }

  .footer-main-layout {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-brand-block {
    width: 100%;
  }

  .footer-brand-title {
    font-size: 36px;
  }

  .footer-brand-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .footer-matrix-block {
    width: 100%;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
  }

  .matrix-column {
    flex: 1 1 40%;
    gap: 16px;
  }

  .matrix-column-head {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .matrix-column-content {
    font-size: 14px;
    line-height: 2;
  }

  .footer-base-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-meta-text {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .left-panel {
    padding: 30px 16px 30px 16px;
  }

  .main-title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .right-panel {
    height: 280px;
  }

  .gallery-wrapper {
    gap: 12px;
    margin-bottom: 30px;
    display: none;
  }

  .img-shower,
  .img-faucet-small {
    max-width: 200px;
  }

  .description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .btn-learn {
    padding: 14px 32px;
    font-size: 12px;
  }

  .hero-badge {
    left: 12px;
    bottom: 16px;
    padding: 10px 16px;
  }

  .badge-num {
    font-size: 26px;
  }

  .badge-label {
    font-size: 10px;
  }

  .stat-item {
    flex: 1 1 45%;
    max-width: 120px;
  }

  .stat-num {
    font-size: 26px;
  }

  .stat-desc {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .stats-banner {
    padding: 30px 12px;
    gap: 10px;
  }

  .about-heading {
    font-size: 28px;
  }

  .about-img {
    height: 200px;
  }

  .matrix-block h3 {
    font-size: 24px;
  }

  .profile-item-title {
    font-size: 22px;
  }

  .texture-heading {
    font-size: 28px;
  }

  .tex-box-1 {
    width: 130px;
    height: 180px;
    left: 12%;
  }
  .tex-box-2 {
    width: 110px;
    height: 150px;
    right: 0;
    bottom: 10px;
  }
  .tex-box-0 {
    width: 80px;
    height: 80px;
    padding: 12px;
  }
  .tex-title {
    font-size: 18px;
  }

  .apply-heading {
    font-size: 28px;
  }

  .apply-sub {
    font-size: 14px;
  }

  .btn-apply {
    padding: 12px 24px;
    font-size: 12px;
    white-space: normal;
    width: 100%;
  }

  .footer-brand-title {
    font-size: 28px;
  }

  .matrix-column {
    flex: 1 1 100%;
  }

  .footer-matrix-block {
    flex-direction: column;
    gap: 24px;
  }
}
